1

I get a Boost circular buffer file not found issue when trying to profile my C++ code in Xcode 7.1 but no such error when running the code normally.

enter image description here

Do I need to pass some parameters to the Profile section in Edit Scheme?

enter image description here

EDIT:

I should add that in the same project #include <boost/lexical_cast.hpp> doesn't give an error!

Dave Chambers
  • 2,483
  • 2
  • 32
  • 55

1 Answers1

1

It seems Instruments always uses the latest SDK, even when the main project doesn't.

I solved the issue by including boost framework in the proper place within latest SDK.

Dave Chambers
  • 2,483
  • 2
  • 32
  • 55