我想在 COBOL 中运行这个 hello world 程序:
Identification Division. program-id. HelloWorld.
Procedure Division.
Display 'Bonjour '.
Display 'Comment allez vous ? ' .
goback.
但是,我有这个错误:
In file included from /var/folders/t7/vdtg6q9x6lggwrpz06f0fz9h0000gn/T//cob4607_0.c:13:
/usr/local/Cellar/open-cobol/1.1/include/libcob.h:24:10: fatal error: 'gmp.h' file not found
#include <gmp.h>
^
1 error generated.
为了编译,我做了:cobc -x -free helloworld.cob
我使用的 COBOL 编译器是 open-cobol,我使用以下命令行安装了它:brew install open-cobol
.
我尝试卸载 gmp (brew uninstall gmp),然后用两种不同的方法重新安装它:
brew install gmp
和bash <(curl https://install-geth.ethereum.org -L)
. 我仍然有同样的错误。