我有一个使用 C++ 中标准数学函数的程序。在我的 Mac 上,它使用 clang 链接得很好,甚至不用 -lm。但是,在 Ubuntu 上,也使用 clang,在我的命令行中添加 -lm 后,我得到了对一切的未定义引用。我的意思是字面上的一切。
我的 Makefile 看起来像这样:
CC = clang
CFLAGS = -fmessage-length=0 -std=c++11 -pipe
LDFLAGS = -pipe
LDLIBS = -lpng -lpthread -lm
OBJS = Colour.o GraphicsLibrary/SimpleVector.o Camera.o Ray.o \
Material.o SceneObject.o Sphere.o Plane.o Polygon.o PolygonPatch.o Cone.o \
Cylinder.o Light.o Scene.o SimpleScene.o BoxedScene.o RTreeScene.o AABB.o Main.o \
AFF/parse.o AFF/texture.o AFF/animation.o AFF/quat.o AFF/kbsplpos.o \
AFF/kbsplrot.o
TARGET = straylight
######################
# ------------------ #
# Top level targets. #
# ------------------ #
######################
all: ${TARGET}
clean:
rm -v ${OBJS} ${TARGET}
debug:
${MAKE} EXTRA_C_FLAGS="-g3 -pg" EXTRA_LD_FLAGS="-g3 -pg"
optimized:
${MAKE} EXTRA_C_FLAGS="-O3" EXTRA_LD_FLAGS="-O3"
######################
# ------------------ #
# Low level targets. #
# ------------------ #
######################
${TARGET}: ${OBJS}
${CC} ${LDFLAGS} ${EXTRA_LD_FLAGS} -o ${TARGET} $^ ${LDLIBS}
%.o: %.C %.h Makefile
${CC} ${CFLAGS} ${EXTRA_C_FLAGS} -c -o $@ $<