将idevicedebug.c编译为xcode项目
为什么我会得到上面提到的未解决的符号错误?我在这里做错了什么?
答案 0 :(得分:0)
根据Makefile
idevicedebug.c
,不仅取决于libimobiledevice
库,还需要libinternalcommon
(common/debug.h
定义debug_info_real
):
idevicedebug_SOURCES = idevicedebug.c
idevicedebug_CFLAGS = $(AM_CFLAGS)
idevicedebug_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS)
idevicedebug_LDADD = $(top_builddir)/src/libimobiledevice.la
您是否从Xcode项目链接到此库?