gpt4 book ai didi

C: 未定义的楼层引用

转载 作者:太空狗 更新时间:2023-10-29 15:22:22 25 4
gpt4 key购买 nike

我在 Ubuntu 上使用 Eclipse 来编写/编译/运行 C 代码。我正在尝试构建我的项目。以下是 Eclipse 控制台中的输出。

22:18:31 **** Build of configuration Debug for project Project1 ****
make all
Building file: ../project1.c
Invoking: GCC C Compiler
gcc -I/lib/i386-linux-gnu -O0 -g3 -Wall -c -fmessage-length=0 -pthread -lm -MMD -MP -MF"project1.d" -MT"project1.d" -o "project1.o" "../project1.c"
../project1.c: In function ‘main’:
../project1.c:146:6: warning: unused variable ‘this_thread_id’ [-Wunused-variable]
../project1.c: In function ‘_pre_init’:
../project1.c:126:1: warning: control reaches end of non-void function [-Wreturn-type]
Finished building: ../project1.c

Building file: ../scheduler.c
Invoking: GCC C Compiler
gcc -I/lib/i386-linux-gnu -O0 -g3 -Wall -c -fmessage-length=0 -pthread -lm -MMD -MP -MF"scheduler.d" -MT"scheduler.d" -o "scheduler.o" "../scheduler.c"
Finished building: ../scheduler.c

Building target: Project1
Invoking: GCC C Linker
gcc -L/lib/i386-linux-gnu -lm -pthread -o "Project1" ./project1.o ./scheduler.o
./project1.o: In function `advance_global_time':
/home/akshay/Cworkspace/Project1/Debug/../project1.c:50: undefined reference to `floor'
collect2: ld returned 1 exit status
make: *** [Project1] Error 1

谁能帮我弄清楚问题是什么以及如何解决?

最佳答案

您需要在目标文件之后链接库。

你有:

gcc -L/lib/i386-linux-gnu -lm -pthread -o "Project1"  ./project1.o ./scheduler.o   

你需要:

gcc -L/lib/i386-linux-gnu -pthread -o "Project1"  ./project1.o ./scheduler.o -lm 

链接器的工作方式似乎发生了变化——在某些时候,可以在目标文件之前指定共享库(例如数学库),并且一切都会起作用。然而,如今,如果共享库在扫描时不满足任何符号,则链接过程将被忽略。确保在库修复此问题之前列出目标文件。

另见 Undefined reference to 'pthread_create' ;同样的问题,同样的解决方案。我怀疑这是否是 SO 中唯一的此类问题。

关于C: 未定义的楼层引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14743023/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com