0

我通过 subversion 查看了 Clozure Common Lisp 1.10 以获取我的 raspian raspberry pi。当我尝试运行 armcl 时,出现“未找到 GLIBC_2.15”错误。我用apt-get安装了最新版本的m4,1.4.16-3。我按照 Clozure 的说明构建 lisp 内核, http: //ccl.clozure.com/install.html

raspberrypi:/ccl/lisp-kernel/linuxarm$ sudo make clean && make
/bin/rm -f pmcl-kernel.o gc-common.o arm-gc.o bits.o  arm-exceptions.o image.o thread_manager.o lisp-debug.o memory.o unix-calls.o arm-asmutils.o  imports.o lispdcmd.o plprint.o plsym.o albt.o arm_print.o ../../armcl
/bin/rm -f pad.o  arm-spentry.o
m4 -DLINUX -DARM -I../ ../pad.s | as  -mfpu=vfp -march=armv6  -o pad.o
Assembler messages:
Fatal error: can't create pad.o: Permission denied
make: *** [pad.o] Error 1

这个权限错误是意外的,因为我在这台机器上有 sudo 权限。可能出了什么问题?

4

1 回答 1

1

你正在运行make cleansudo但不是make。如果你想同时运行,sudo你必须运行:

$ sudo make clean && sudo make

(这确实是关于shell命令语法的问题,与make无关)。

于 2014-10-13T18:43:48.793 回答