我试图在我的win7 64位机上编译ECL 10.4.1,但遇到了问题。
我使用链接到这里的确切包,尝试使用mingw32/MSYSmingw-w64/MSYS构建都失败了。
使用mingw32:./configure passes,make失败如下:

gcc -DECLDIR="\"/usr/local/lib/ecl-10.4.1\"" -I. -Ic:/my_home/ecl-10.4.1/build -I/c/my_home/ecl-10.4.1/src/c -I../ecl/gc -DECL_API -DECL_NO_LEGACY   -g -O2   -Dmingw32 -c -o main.o tmp.c

In file included from c:/my_home/ecl-10.4.1/src/c/main.d:20:0:
c:/my_home/ecl-10.4.1/build/ecl/ecl.h:71:4: error: #error "The Windows ports cannot be built without threads."
make[2]: *** [main.o] Error 1
make[2]: Leaving directory `/c/my_home/ecl-10.4.1/build/c'
make[1]: *** [libeclmin.a] Error 2
make[1]: Leaving directory `/c/my_home/ecl-10.4.1/build'
make: *** [all] Error 2

使用mingw-w64:./configure失败如下:
[...]
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking gmp.h usability... no
checking gmp.h presence... no
checking for gmp.h... no
checking gmp/gmp.h usability... no
checking gmp/gmp.h presence... no
checking for gmp/gmp.h... no
configure: error: Can not find GMP header.

有人对这两个有什么建议吗或者我可以尝试另一个构建系统吗(除了Cygwin,我因为许可证的原因而避免使用它。)

最佳答案

Firt,10.4.1确实是老版本了更新到至少11.1.1,或者最好是git版本。
然后,您需要安装mingw32(最好使用mingw get)和msys。
之后,您需要安装mingw32 gmp dev包(或手动编译它)、boehm-gc-7.2alpha2和libffi。
鉴于您应该启动msys shell并键入以下命令:

./configure CFLAGS="-Ic:/msysdir/local/include -Ic:/msysdir/local/lib/libffi-3.0.9/include" LDFLAGS="-Lc:/msysdir/local/lib" --prefix=c:/opt/ecl --enable-threads --with-system-gmp -enable-boehm=system && make 2>&1 | tee -a build.log

这将生成32位版本对于m64版本,首先需要将所有ECL依赖项构建为64位我没试过。
此外,您可以使用包含在ECL中的gmp和gc,而不是系统gmp和gc我不这么做,因为ECL构建需要更多的时间。

关于windows-7 - 在Win7-64上通过mingw32或mingw-64帮助安装ECL(可嵌入式Common Lisp),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3848724/

10-12 07:33