我尝试在Release中构建我的应用并将其存档。
失败了ld: library not found for -lPods-ABPadLockScreen
clang: error: linker command failed with exit code 1 (use -v to see invocation)
如上所述,它在调试中编译良好,并且在Simulator中运行完全没有任何问题。
我的一些设置:
//:configuration = Debug
OTHER_LDFLAGS = $(inherited)
//:configuration = Release
OTHER_LDFLAGS = $(inherited)
//:configuration = Debug
ARCHS = armv7s armv7
SDKROOT = iphoneos
ONLY_ACTIVE_ARCH = YES
VALID_ARCHS = armv7 armv7s
//:configuration = Release
ARCHS = armv7s armv7
SDKROOT = iphoneos
VALID_ARCHS = armv7 armv7s
您对如何构建发布有任何想法吗?
答案 0 :(得分:0)
我将架构更改为标准32位。 这解决了问题,应用程序现在可以编译。