gpt4 book ai didi

makefile - 在 OSX 10.8.3 : "ld: library not found for -lX11" 中使用 X11

转载 作者:行者123 更新时间:2023-12-04 02:27:04 25 4
gpt4 key购买 nike

我有以下生成文件:

PROG    = draw
CFLAGS = -w -s -O2 -ansi -DSHM
XLIBS = -lX11 -lXext -lXmu -lXext -lXmu -lXt -lXi -lSM -lICE
LIBS = -framework OpenGL
INCLS = -I/usr/X11R/include -I/share/mesa/include
LIBDIR = -L/usr/X11/lib -L/usr/X11R6/lib
#source codes
SRCS = draw_main.cpp $(PROG).cpp
#substitute .cpp by .o to obtain object filenames
OBJS = $(SRCS:.cpp=.o)

#$< evaluates to the target's dependencies,
#$@ evaluates to the target

$(PROG): $(OBJS)
g++ -o $@ $(OBJS) $(LIBDIR) $(LIBS) $(XLIBS)

$(OBJS):
g++ -c $*.cpp $(INCLS)

clean:
rm $(OBJS)

每次我尝试运行它时,都会出现以下错误:
ld: library not found for -lX11
collect2: ld returned 1 exit status

有人可以帮我找出 X11 的库在 OSX 10.8.3 中的位置吗?对我来说,这看起来是正确的。

提前致谢。

最佳答案

您是否按照此处的建议安装了 XQuartz:http://support.apple.com/kb/HT5293 ?

默认情况下,Mountain Lion 上没有 X11。

关于makefile - 在 OSX 10.8.3 : "ld: library not found for -lX11" 中使用 X11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15779181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com