relocatable dylibs (e.g. embedded frameworks) are only supported on iOS 8.0 and later (@rpath/libswift_stdlib_core.dylib)

前端 未结 7 1321
说谎
说谎 2021-01-30 22:21

I just upgraded from Xcode 6 Beta 2 to Xcode Beta 3 and am now getting the following warning when building my project:

ld: warning: relocatable dylibs (e.g. embe         


        
7条回答
  •  独厮守ぢ
    2021-01-30 23:04

    this is happening because one of your embedded binaries's deployment target is lower than your applications target. lower your embeded binaries's building target and be fine.

    this was the error cause in xcode 6.1.1

    i was using xcglogger with deployment target ios 8.0, and my application's deployment target 7.0. set the xcglogger's deployment target ios 7.0 and problem solved.

提交回复
热议问题