3

I do most of my coding using Qt in C++ and have noticed that I get x86 architecture not found errors when I enable support for C++11 in my Qt .pro files.

I have the latest Ver of Xcode and have developer tools installed. I realize that OSX uses clang but it still seems that I am still stuck with OSX only supporting earlier versions of gcc.

Is there a reason we can't get these updates from Xcode, and if not I guess I need to install these updates myself?

1 Answers1

2

You can use clang with this FLAGS -std=c++11 -stdlib=libc++ to use C++11 features, another similar question can be found here

Community
  • 1
  • 1
RealityPC
  • 137
  • 8