在/ usr / lib中找不到lpThread库

时间:2015-02-09 14:47:19

标签: c gcc makefile

我在链接.so库时遇到问题。我已将它们复制到/usr/lib/usr/local/lib

以下是我的makefile的片段:

PROJ_LDFLAGS += -lpthread

all: $(TARGET)

$(TARGET): $(OBJ)
    $(CC)  $^ $(LDFLAGS) $(PROJ_LDFLAGS) -o $@

%.o: %.c
    $(CC)  -I. $(CFLAGS) $(PROJ_CFLAGS) -c $<

0 个答案:

没有答案