我需要将我的对象链接到其他人的库文件。 因此,在我的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有什么问题? 谢谢你的帮助!!!
答案 0 :(得分:1)
将LIB := -L../lib/$(LIBSB)
更改为LIB := -L../lib $(LIBSB)