opensource-cobol icon indicating copy to clipboard operation
opensource-cobol copied to clipboard

"opensource COBOL" is open-source COBOL compiler, an extension of the Japan-specific features. "opensource COBOL" translates COBOL program to C code and compiles it using GCC or CL.

Results 19 opensource-cobol issues
Sort by recently updated
recently updated
newest added

This is not a particularly important issue. When building opensource-cobol, make command displays the following warning message. ``` gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -O2 -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes...

Resolve the many warning messages that appear when executing the make command.

Add automatic execution of tests by GitHub Actions like Open-COBOL-ESQL(https://github.com/opensourcecobol/Open-COBOL-ESQL/blob/master/.github/workflows/ubuntu-test.yml)

The link is the very first item in https://github.com/opensourcecobol/opensource-cobol but as you now use https://github.com/opensourcecobol/opensource-cobol/releases it likely can be replaced (or removed completely as the releases are part of the...

I tried to implement the JSON function. This function like a environment function with jansson. DISPLAY JSON-NAME : Specify the name of JSON structure. DISPLAY JSON-KEY : Register period separated...

enhancement

I used valgrind memory check against 'Hello World' program and found memory leaks. ```cobol IDENTIFICATION DIVISION. PROGRAM-ID. hello. DATA DIVISION. WORKING-STORAGE SECTION. PROCEDURE DIVISION. DISPLAY "Hello". STOP RUN. ``` ```...

親プログラムから3つ以上のプログラムを実行したのち、CANCEL ALLを実施した際に、正常にすべてのプログラムがCANCELされていなかった問題を修正した。 Fixed the problem that not all programs were normally CANCELed when CANCEL ALL was executed after executing 3 or more programs from the parent program.

opensource COBOL開発者各位 お疲れ様です。 現在、我々のチームでopenosurce COBOLでのCOBOLのコンバート先として、C言語だけでなく、Javaコードを出力できるようにすることを考えています。 目的として、以下2点があります。 - 昨今増えてきているJavaのシステムとの親和性を向上し、クラウド、マイクロサービスへの適用を考える - 日本国内ではCOBOLからJavaへの移行の需要が増えており、その中で利用できるようにしたい 開発内容について、opensourcecobol内に別途リポジトリを作成して共有したいと考えています。 ご意見有りましたら、コメントお願いいたします。 -- We would like to update opensource COBOL to generate Java code not only C code because, -...

While developing #41 , While developing # 41, I got many errors when trying to add an option to configure. Opensource COBOL's Automake related files are created for older versions,...