我试图在我的本地Ubuntu 14.04机器上安装PintOS。当我尝试运行make来编译实用程序时。我得到以下错误。
ankitkal@ankitkal-Inspiron-5521:~/os/pintos/src/utils$ ls
backtrace Makefile pintos pintos.~1.55.~ pintos-mkdisk setitimer-helper.o squish-unix.c
CVS Makefile~ pintos~ pintos-gdb setitimer-helper.c squish-pty.c
ankitkal@ankitkal-Inspiron-5521:~/os/pintos/src/utils$ make
gcc -lm setitimer-helper.o -o setitimer-helper
setitimer-helper.o: In function `main':
setitimer-helper.c:(.text+0xbe): undefined reference to `floor'
collect2: error: ld returned 1 exit status
make: *** [setitimer-helper] Error 1
ankitkal@ankitkal-Inspiron-5521:~/os/pintos/src/utils$
数学库(用于setitimer-helper.c
中使用的<math.h>
标头)没有正确链接。当我查看Makefile时,输出如下。
ankitkal@ankitkal-Inspiron-5521:~/os/pintos/src/utils$ cat Makefile
all: setitimer-helper squish-pty squish-unix
CC = gcc
CFLAGS = -Wall -W
LDFLAGS = -lm
setitimer-helper: setitimer-helper.o
squish-pty: squish-pty.o
squish-unix: squish-unix.o
clean:
rm -f *.o setitimer-helper squish-pty squish-unix
请告诉我如何修理它。我用的是gcc-4.8.6。
gcc -lm setitimer-helper.o -o setitimer-helper
问题在于你给GCC的参数顺序。试试这个:
gcc -o setitimer-helper setitimer-helper.o -lm
这是因为ld
在连接时解析未定义符号的方式。基本上,您之前的方式是,ld
首先看到-lm
并说"我没有理由包含这个库"。然后,它包含对floor
有未解析引用的setitimer-helper.o
。在此之后,没有更多的库需要考虑,并且floor
仍然未解决。
如果-lm
在后面,它能够解析对floor
的引用