user2276173
user2276173

Reputation: 121

Xcode C++ : Build in Debug but not Release

I am coding in Xcode 6, c++. I can build and run fine my program in debug, but I somehow can't compile in Release mode. The error I see is : Apple LLVM 6.0 Error Could not read profile: No such file or directory

I don't really know what this means... ( I still get this after reducing the main.cpp file to a usual "Hello World" program)

I have tried, as suggested in Xcode builds on Debug but not on Release to clean my project, close it, close Xcode restart and rebuild, or even deleting Derived Data but I still have the same problem.

Does anyone know how to fix this?

Many thx

T

Upvotes: 5

Views: 2636

Answers (1)

user2276173
user2276173

Reputation: 121

I found out the answer to my question. You have to specify : "Use Optimisation Profile" to false

Upvotes: 6

Related Questions