0
我一直在嘗試編譯我的代碼,它不想工作。沒有編譯floor()ceil()和math.h在gcc中include和-lm
它給了我一個消息錯誤,指出引用是不確定的。
我用過的文件math.h包括我的所有模塊和我的主文件:
#include <math.h>
下面是bash的屏幕輸出:
bash-4.1$ make
gcc -W -Wall -lm -g -c -o imagePGM.o imagePGM.c
gcc tp2.o imagePGM.o -o tp2
imagePGM.o: In function `imageContraste':
imagePGM.c:(.text+0x1067): undefined reference to `floor'
imagePGM.c:(.text+0x10c1): undefined reference to `ceil'
imagePGM.c:(.text+0x1103): undefined reference to `floor'
imagePGM.o: In function `imageRatio':
imagePGM.c:(.text+0x1371): undefined reference to `floor'
imagePGM.c:(.text+0x13aa): undefined reference to `ceil'
imagePGM.c:(.text+0x13ce): undefined reference to `floor'
collect2: erreur: ld a retourné 1 code d'état d'exécution
make: *** [tp2] Erreur 1
bash-4.1$
我使用了「-lm 「與海灣合作委員會的爭論。
這裏是我的makefile:
# Variables predefinies
CC = gcc
CFLAGS = -W -Wall -lm -g
# Dependances
# Par defaut, make (sans arguments) ne se soucie que de la premiere dependance rencontree
# Aucune action par defaut ici, car gcc ne "sait" pas comment traiter ces dependances
# Dependances plus complexes : on ne peut melanger .c, .o et .h dans la meme dependance
tp2 : tp2.o imagePGM.o
tp2.o : tp2.c imagePGM.h
# $(CC) $(CFLAGS) -c tp2.c
imagePGM.o : imagePGM.c imagePGM.h
clean :
rm tp2 tp2.o imagePGM.o
我是否需要其他實現一些或做一些具體的事情?
你-lm是在錯誤的地方有聯繫。它必須到最後。 – nos
您正在將'-lm'傳遞給編譯器。這沒有效果。你必須將它傳遞給鏈接器,而不是鏈接器,並且在鏈接序列中它必須出現在任何調用'libm'中定義的函數的目標文件之後。你需要對GCC和GNU Make的編譯和鏈接有一個基本的瞭解。這是[相當不錯的初學者教程](https://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html)。對於權威文檔,[這裏是GCC手冊](https://gcc.gnu.org/onlinedocs/)和[這裏是GNU Make手冊](https://www.gnu.org/software/make/manual /make.html) –