在链接对象时,制作报告:组在开始之前结束了吗?

时间:2012-03-29 06:31:47

标签: makefile

我需要将我的对象链接到其他人的库文件。 因此,在我的makefile中,我这样写:

LIBSB =-Wl,--start-group -ldiag -ldiag_esw -lacl -ldiagcint -lcint -lsal_appl \
-lbcm_compat -lbcm_rpc -lcpudb  -ltrx  -lstktask -llubde -ldrivers -ldiscover  \
-lrcu -lpthread -lrt -lm   -Wl,--end-group
LIB :=  -L../lib/$(LIBSB)   # ../lib is the path of folder
APP_NAME = L3appl
$(APP_NAME): $(OBJS)
    $(CC)   -c  $(INC_DIR) $(SRCS)
    $(CC)   -o  $(APP_NAME)  $(OBJS) $(LIB) 

但是制作报告:

group ended before it began (--help for usage)
collect2: ld returned 1 exit status
make: *** [L3appl] Error 1

有没有人知道我的makefile有什么问题? 谢谢你的帮助!!!

1 个答案:

答案 0 :(得分:1)

LIB := -L../lib/$(LIBSB)更改为LIB := -L../lib $(LIBSB)