当前位置: 首页>>技术教程>>正文


如何编译和运行 COBOL 程序?

,

问题描述

谁能解释我如何在 Ubuntu 中编译和运行 COBOL 程序?我从未在 Ubuntu 中编写过任何程序。请给我一个简单的程序来编译和运行。

最佳回答

COBOL 在 Linux 上并不是特别流行,但有可用的编译器。其中之一是 open-cobol。

第一步是检查它是否安装在您的系统上:它可能没有。

whereis cobc; which cobc
cobc:

如果像我的系统没有安装它,你可以安装它

sudo apt-get install open-cobol

并检查其安装的 whereis cobc; which cobc

cobc: /usr/bin/cobc /usr/bin/X11/cobc /usr/share/man/man1/cobc.1.gz
/usr/bin/cobc

现在让我们用任何文本编辑器编写我们的第一个程序。

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
*> simple hello world program
PROCEDURE DIVISION.
    DISPLAY 'Hello world!'.
    STOP RUN.

将此另存为 “helloworld.cbl”

我们现在可以用 cobc -free -x -o helloworld helloworld.cbl 编译它

在我的系统上,我看到了这个

$ cobc -free -x -o helloworld helloworld.cbl
/tmp/cob3837_0.c: In function ‘HELLO_2DWORLD_’:
/tmp/cob3837_0.c:75:7: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
/tmp/cob3837_0.c:76:7: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
/tmp/cob3837_0.c:77:7: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
/tmp/cob3837_0.c:88:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
/tmp/cob3837_0.c:107:5: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
/tmp/cob3837_0.c:111:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]

一些警告——但使用 ./helloworld 测试没有错误

Hello World!

有用。


替代(固定格式):

       IDENTIFICATION DIVISION.
       PROGRAM-ID. HELLO-WORLD.
      * simple hello world program
       PROCEDURE DIVISION.
           DISPLAY 'Hello world!'.
           STOP RUN.

将其保存为 “helloworld.cob” 并使用 cobc helloworld.cob 编译它(使用 cobcrun helloworld 运行。

如果您想从 C 编译器中删除警告:下载当前的 GnuCOBOL 2.x 快照(尚未更新包)并自己构建它(需要额外的 apt-get bison flex libdb-dev curses-dev )。


摘自:

Cobol Hello World 示例:如何在 thegeekstuff.com 上的 Linux 操作系统上编写、编译和执行 Cobol 程序

在 Ubuntu 12.04.2 上测试

次佳回答

您可以使用 open-cobol 编译器。只需按键盘上的 Ctrl + Alt + T 即可打开终端。打开后,运行以下命令:

sudo apt-get install open-cobol
cobc your_program_here.cbl 

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/12830.html,未经允许,请勿转载。