找不到 -lm 連結器錯誤

找不到 -lm 連結器錯誤

這個問題與以下問題高度相關找不到-lm,但是當我呼叫跨 G++ 連結器時出現錯誤。

我正在嘗試遵循以下提供的文檔將 Eclipse 與 ARTIK SDK 結合使用。在執行「建立 SDK 專案 - Linux」部分時,我遇到了以下錯誤:

18:02:24 **** Incremental Build of configuration Default for project gpio-test ****
make all 
Building target: gpio-test
Invoking: Cross G++ Linker
arm-linux-gnueabihf-g++ -L"/opt/sysroots/artik-sysroot/usr/lib" --sysroot=/opt/sysroots/artik-sysroot -o "gpio-test"  ./artik_gpio_test.o   -lartik-sdk-base
/opt/toolchains/gcc-linaro-5.4.1-2017.01-x86_64_arm-linux-gnueabihf/bin/../lib/gcc/arm-linux-gnueabihf/5.4.1/../../../../arm-linux-gnueabihf/bin/ld: cannot find -lm
collect2: error: ld returned 1 exit status
make: *** [gpio-test] Error 1

18:02:24 Build Finished (took 63ms)

呼叫交叉 G++ 連結器時出現問題。如果我將程式碼傳輸到 ARTIK,則會收到以下錯誤:

Last login: Thu Apr 13 21:10:38 2017 from 192.168.0.11

/root/gpio-test/artik_gpio_test.c;exit

[root@artik ~]# /root/gpio-test/artik_gpio_test.c;exit
/root/gpio-test/artik_gpio_test.c: line 10: enum: command not found
/root/gpio-test/artik_gpio_test.c: line 11: R: command not found
/root/gpio-test/artik_gpio_test.c: line 12: G: command not found
/root/gpio-test/artik_gpio_test.c: line 13: B: command not found
/root/gpio-test/artik_gpio_test.c: line 14: syntax error near unexpected token `}'
/root/gpio-test/artik_gpio_test.c: line 14: `};'
logout 

我能做些什麼?

編輯:在此輸入影像描述

相關內容