gcc cJSON.c json.c -o j /usr/bin/ld: /tmp/ccwuW79V.o: in function `parse_number': cJSON.c:(.text+0x4c5): undefined reference to `pow' /usr/bin/ld: /tmp/ccwuW79V.o: in function `print_number': cJSON.c:(.text+0x833): undefined reference to `floor' collect2: error: ld returned 1 exit status这是为啥
时间: 2024-01-28 18:04:52 浏览: 192
这个错误的原因是编译器找不到函数pow()和floor()的定义。 pow()函数用于计算幂次方,floor()函数用于向下取整。
解决这个问题,您需要在编译命令中链接数学库(libm)。您可以尝试以下命令:
```
gcc cJSON.c json.c -o j -lm
```
其中,"-lm"参数会链接数学库,这样就可以解决pow()和floor()函数未定义的问题。
相关问题
/home/chenly1/wrk/test_project_001_c/download/gcc/bin/../lib/gcc/riscv-nuclei-elf/10.2.0/../../../../riscv-nuclei-elf/bin/ld: spi_write_kernel_b.elf section `.rodata' will not fit in region `ilm' /home/chenly1/wrk/test_project_001_c/download/gcc/bin/../lib/gcc/riscv-nuclei-elf/10.2.0/../../../../riscv-nuclei-elf/bin/ld: region `ilm' overflowed by 13124 bytes /home/chenly1/wrk/test_project_001_c/download/gcc/bin/../lib/gcc/riscv-nuclei-elf/10.2.0/../../../../riscv-nuclei-elf/bin/ld: spi_write_kernel_b.elf section `.rodata' will not fit in region `ilm' /home/chenly1/wrk/test_project_001_c/download/gcc/bin/../lib/gcc/riscv-nuclei-elf/10.2.0/../../../../riscv-nuclei-elf/bin/ld: region `ilm' overflowed by 13124 bytes collect2: error: ld returned 1 exit status make: *** [../../download/hbird-sdk-master/Build/Makefile.rules:72: spi_write_kernel_b.elf] Error 1 collect2: error: ld returned 1 exit status
这个错误表明在链接过程中,代码中的`.rodata`节(只读数据)无法适应所分配的`ilm`区域,导致溢出。ld命令返回了错误代码1,表示链接失败。
这个问题可能是由于代码中的只读数据太大而引起的。解决这个问题的一种方法是增加`ilm`区域的大小,使其能够容纳`.rodata`节中的数据。你可以尝试调整链接脚本或编译器选项来修改`ilm`区域的大小。
另外,你还可以检查一下代码中是否有过多的只读数据,尝试优化代码以减少只读数据的大小。
如果以上方法都无法解决问题,你可能需要进一步分析代码和链接过程,以找出导致溢出的原因,并相应地调整代码或链接器设置。
make for plat=atlas310 cross=aarch64-ascend310-linux-gnu- LDFLAGS=-Wl,--gc-sections -static -L/home/257916/server/test/v1.1/Trunk/build/../src/thirdpart/libs/atlas310 -L/home/257916/server/test/v1.1/Trunk/build/../lib/atlas310 -ldw -lbs -lpthread -lm EXTRA_CFLAGS=-DSVN_VERSION="\"64670"\" -I /net -DOSA_MODULE_NAME=Spectrum-Convert@64670 -DBUILD_DATE="\"Mon, 24 Jul 2023 19:48:54 +0800"\" CFLAGS=-D_GNU_SOURCE -I/home/257916/server/test/v1.1/Trunk/build/../include -I/home/257916/server/test/v1.1/Trunk/build/../src/base/include -I/home/257916/server/test/v1.1/Trunk/build/../src/base/test/include -I/home/257916/server/test/v1.1/Trunk/build/../src/decode/include -I/home/257916/server/test/v1.1/Trunk/build/../src/decode/test/include -I/home/257916/server/test/v1.1/Trunk/build/../src/fourier/include -I/home/257916/server/test/v1.1/Trunk/build/../src/fourier/test/include -I/home/257916/server/test/v1.1/Trunk/build/../src/include -I/home/257916/server/test/v1.1/Trunk/build/../src/service/include -I/home/257916/server/test/v1.1/Trunk/build/../src/service/test/include -I/home/257916/server/test/v1.1/Trunk/build/../src/draw/include -I/home/257916/server/test/v1.1/Trunk/build/../src/draw/test/include -I/home/257916/server/test/v1.1/Trunk/build/../tools/include -fPIC -ffunction-sections -fdata-sections -g -Wall -O1 -c -o ############################################################ mkdir -p /home/257916/server/test/v1.1/Trunk/build/../bin/atlas310 aarch64-ascend310-linux-gnu-g++ -o draw test/src/draw_pic_test.o -Wl,--gc-sections -static -L/home/257916/server/test/v1.1/Trunk/build/../src/thirdpart/libs/atlas310 -L/home/257916/server/test/v1.1/Trunk/build/../lib/atlas310 -ldw -lbs -lpthread -lm /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: error adding symbols: file in wrong format collect2: error: ld returned 1 exit status make[1]: *** [draw] Error 1 make[1]: Leaving directory `/home/257916/server/test/v1.1/Trunk/src/draw' make: *** [draw] Error 2
根你提供的信息,编译过程中出现了一个错误。错误信息显示 ld (链接器) 试图处理一个格式错误的文件。
具体来说,ld 报告了以下错误:
```
/opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: error adding symbols: file in wrong format
collect2: error: ld returned 1 exit status
```
这个错误通常发生在尝试链接不兼容的目标文件时。可能有以下几个原因导致这个错误:
1. 目标文件 `test/src/draw_pic_test.o` 的格式不正确,不符合链接器的预期。你可能需要检查这个目标文件是否由正确的编译器生成,并且是否与你的交叉编译目标匹配。
2. 链接器正在尝试将不同架构的目标文件链接在一起。请确保你的交叉编译环境配置正确,并且编译器和链接器的目标架构与你的目标平台一致。
3. 缺少必要的库文件。请确保你的链接命令中指定的库文件存在,并且位于正确的位置。
针对这个错误,你可以尝试以下几个步骤来解决问题:
1. 检查目标文件的生成方式和来源。确保使用正确的编译器和编译选项生成目标文件,并确认目标文件的格式正确。
2. 检查你的交叉编译环境配置,确保交叉编译器和链接器的目标架构与你的目标平台一致。
3. 检查链接命令中指定的库文件路径是否正确,并确保库文件存在。
如果问题仍然存在,可能需要更多的上下文信息来进行进一步的诊断和解决。
阅读全文