我从一个依赖于libusb的供应商处获得了一些示例代码。当我尝试使用make编译时,我得到了这个:
mkdir -p .obj
gcc -I./ -I../libsoccptp/include -std=gnu++11 -pthread -g -o .obj/authentication.o -c authentication.cpp -lusb-1.0 -lusb
gcc -std=gnu++11 -pthread -g -o ../out/bin/authentication .obj/authentication.o -L../out/lib -lsoccptp -L/usr/lib -lusb-1.0 -lstdc++ -lusb-1.0 -lusb
../out/lib/libsoccptp.so: undefined reference to `libusb_has_capability'
../out/lib/libsoccptp.so: undefined reference to `libusb_hotplug_register_callback'
../out/lib/libsoccptp.so: undefined reference to `libusb_handle_events_timeout_completed'
../out/lib/libsoccptp.so: undefined reference to `libusb_hotplug_deregister_callback'
collect2: error: ld returned 1 exit status
Makefile:28: recipe for target '../out/bin/authentication' failed
make: *** [../out/bin/authentication] Error 1
我发现很多其他帖子都有类似的问题让libusb正确链接。但似乎其他人的解决方案就是确保将-lusb-1.0
和-lusb
添加为编译器的参数。显然,我的供应商已经设置了Makefile来做到这一点。我还验证了我在Ubuntu上有最新版本的libusb-1.0,据说这是我供应商使用的相同环境。
为什么没有正确链接?
供参考,这是Makefile:
ROOT_DIR ?= ..
OUT ?= ../out
OUT_DIR := $(OUT)/bin
CC := gcc
LIBS := -L${OUT}/lib -lsoccptp -L/usr/lib -lusb-1.0 -lstdc++
override INCLUDES += -I./ -I${ROOT_DIR}/libsoccptp/include
.PHONY: clean
OBJ_DIR := .obj
SOURCES := authentication.cpp shoot_an_image_and_get_it.cpp check_LiveView_status_and_get_images.cpp parser_handling.cpp list_objects.cpp change_camera_setting.cpp
OBJECTS := $(addprefix $(OBJ_DIR)/, $(notdir $(SOURCES:.cpp=.o)))
TARGETS := $(addprefix ${OUT_DIR}/, $(notdir $(basename ${SOURCES})))
all: ${OUT_DIR} $(OBJ_DIR) ${TARGETS}
objs: $(OBJ_DIR) $(OBJECTS)
$(OBJ_DIR)/%.o : %.cpp
$(CC) $(INCLUDES) -std=gnu++11 -pthread -g -o $@ -c $< -lusb-1.0 -lusb
$(OUT_DIR)/%: $(OBJ_DIR)/%.o
${CC} -std=gnu++11 -pthread -g -o $@ $< ${LIBS} -lusb-1.0 -lusb
${OUT_DIR}:
mkdir -p ${OUT_DIR}
$(OBJ_DIR):
mkdir -p $(OBJ_DIR)
clean:
rm -rf ${TARGETS} $(OBJ_DIR)
答案 0 :(得分:1)
在与提供该软件的供应商的工程师讨论后,确定我使用的是更新版本的Ubuntu(v16),然后他们开发了该软件。当我编译旧版本(v14)时,编译得很好。
工程师无法解释Ubuntu 16中破坏了他们代码的变化,但现在这解决了我的问题。