博客專欄

EEPW首頁 > 博客 > linux下調(diào)用math.h編譯出錯undefinde reference to 'sin'

linux下調(diào)用math.h編譯出錯undefinde reference to 'sin'

發(fā)布人:machinnneee 時間:2021-06-01 來源:工程師 發(fā)布文章

如果直接gcc編譯,會出現(xiàn)未定義的情況:

/tmp/ccbS6FZx.o: In function `main':

fft.c:(.text+0x71): undefined reference to `sin'

fft.c:(.text+0x9f): undefined reference to `sin'

fft.c:(.text+0x25e): undefined reference to `pow'

fft.c:(.text+0x2d5): undefined reference to `pow'

fft.c:(.text+0x45e): undefined reference to `pow'

fft.c:(.text+0x548): undefined reference to `sqrt'

/tmp/ccbS6FZx.o: In function `Wn_i':

fft.c:(.text+0x64d): undefined reference to `cos'

fft.c:(.text+0x674): undefined reference to `sin'

collect2: error: ld returned 1 exit status

是因為缺少調(diào)用,具體需要添加-lm進行編譯

gcc a.c -o a -lm

 其中a.c為源代碼,a為編譯后輸出結(jié)果, -lm為gcc選項

在編譯即可。

*博客內(nèi)容為網(wǎng)友個人發(fā)布,僅代表博主個人觀點,如有侵權(quán)請聯(lián)系工作人員刪除。



關鍵詞: linux math

相關推薦

技術(shù)專區(qū)

關閉