-1

我有一个使用 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 $@ $<
4

1 回答 1

0

根据评论,在编译 C++ 时,您需要使用正确的编译器。clang++对于 C++。

通常 C 和 C++ 编译器是相同的基本程序,但调用它们例如。clang 或 clang++ 使用目标语言的正确选项调用它们。

您看到的错误很可能是程序未链接到正确的运行时库的结果。

于 2014-03-19T20:23:05.753 回答