0

I'm trying to move an Xcode app from a MBP to an iMac. I've copied all the folders and files needed but keep getting to following error on build:

clang: error: linker command failed with exit code 1 (use -v to see invocation)

After Googling around a bit the most common fix for this is to set Bitcode to no. I've done this but it doesn't make a difference. I've also tried quitting Xcode emptying the DerivedData folder and restarting.

Below is the error in Full:

Full Xcode error

Here is a list of my linked libraries:

Linked Libraries

jampez77
  • 5,012
  • 7
  • 32
  • 52
  • It seems the `libWikitudeSDK.a` file is under your desktop/TestingAugs copy/ folder? Move it to your project folder and try it again? – J.Wang Mar 07 '16 at 11:49

2 Answers2

0

It sounds a lot like the error is true - have you definitely got your libWikitude framework in a referenced path?

Go to XCode, Build Settings, find 'Framework Search Paths' under Search Paths, and make sure the folder of your libWikitude is correct.

Perhaps it's hardcoded and now the path has changed?

ben_the_builder
  • 309
  • 2
  • 8
0

After a few headaches with this I decided to simply remove all references to the Wikitude lib as it was not being used by the app.

This immediately solved the issue. Thanks for those who answered.

jampez77
  • 5,012
  • 7
  • 32
  • 52