Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode build Perfect failure -- COpenSSL not found

Xcode: 8.0

Swift toolchain: 3.0 release

Perfect: .Package(url:"https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion: 2, minor: 0),


There is fine to run swift build in terminal.

But I'm run swift package generate-xcodeproj and open project with Xcode, Run it, then get error when build PerfectNet framework.

ld: library not found for -lCOpenSSL for architecture x86_64

like image 503
eason Avatar asked Sep 18 '16 10:09

eason


2 Answers

You need to add the following line to your project's (not target) "Library Search Paths" setting: "$(PROJECT_DIR)/**" (including quotes).

Unfortunately, as for now, you need to do that each time you add a depedency and regenerate project as a result.

like image 140
HiveHicks Avatar answered Oct 13 '22 22:10

HiveHicks


Update to Xcode 8.1, which fixes this particular issue when generating project files.

like image 1
Eric3 Avatar answered Oct 13 '22 22:10

Eric3