I am currently experiencing the exact same issue as this poster here:
https://forums.coronalabs.com/topic/29020-corona-sample-ios-app-not-building/
Basically I took the app template from Enterprise, tried to integrate a 3rd Party SDK, and added the libraries required for it based on its documentation. Then I got the following after building:
ld: warning: directory not found for option '-L/Users/username/Applications/CoronaEnterprise/ProjectTemplates/App/ios/CoronaEnterprise/Corona/ios/lib' ld: warning: directory not found for option '-F/Users/username/Applications/CoronaEnterprise/ProjectTemplates/App/ios/CoronaEnterprise/Plugins/sdk-facebook/ios' ld: library not found for -lplayer clang: error: linker command failed with exit code 1 (use -v to see invocation)
The SDK integrates well enough if used on a new project I start from scratch. And the unedited Corona app template naturally builds with no problem either. It’s only when I combine the two that I run into this issue.
Just some additional info in case it helps - I’m currently using Xcode 8.2.1, Corona Enterprise 2017.3023, and OS X 10.11.16
I was able to get rid of the first two warnings by removing the indicated paths from the framework and library search paths (although I’m not completely certain this is the right way to resolve this). But I am unable to find a proper fix for the last two lines of error. Does anyone know any possible solution for this?