使用Embeddable Common Lisp编译文件的正确方法是什么?

时间:2019-03-10 10:09:12

标签: c compiler-errors lisp common-lisp ecl

我试图使用ECL创建一个.o文件,目的是使用其编译为C的功能,但是在尝试将程序构建为文档列表时,我收到一个错误消息。

我正在跑步:

(c:build-program "CompiledFile" "hello.lisp")

收到错误:

Debugger received error of type: SIMPLE-ERROR
Cannot find the external symbol BUILD-PROGRAM in #<"C" package>.
Error flushed.
>> "CompiledFile"
>> "hello.lisp"
>> ;;; Warning: Ignoring an unmatched right parenthesis.

hello.lisp的内容如下:

(defun say-hello ()
  (print "Hello, world"))

(say-hello)
(terpri)
(quit)

我正在关注https://common-lisp.net/project/ecl/static/manual/ch34s03.html此处提供的文档,其功能定义为:

c:build-program {image-name &key lisp-files ld-flags prologue-code epilogue-code}

2 个答案:

答案 0 :(得分:5)

根据https://ecls-list.narkive.com/xACoJUbf/c-build-program-and-eval,默认情况下未加载编译器,您需要使用

(require 'cmp)

第一。

我不确定手册中为什么没有提到这一点。

答案 1 :(得分:1)

根据ECL manual,需要初始化C/C++编译器来生成.o文件:

(ext:install-c-compiler)
(compile-file "hello.lisp" :system-p t) ; Now this produces .o file

从 .o 生成可执行文件:

(c:build-program "CompiledFile" :lisp-files '("hello.o"))