C++ Target on OS X Mountain Lion

There seems to be a problem with compiling to C++ on OS X 10.8. The compiler tries to run this program: [i]/Applications/Xcode.app/Contents/Developer/usr/bin/clang[/i] which isn't there (absolute paths? wtf?) A simple fix for this problem: [quote]su…

  • Forums
  • »
  • Bugs
  • »
  • C++ Target on OS X Mountain Lion
Viewing 1 to 1 (1 Total)
C++ Target on OS X Mountain Lion

Kasoki

Kasoki
Total Posts: 20
Joined: June 20, 2012

There seems to be a problem with compiling to C++ on OS X 10.8. The compiler tries to run this program: /Applications/Xcode.app/Contents/Developer/usr/bin/clang which isn't there (absolute paths? wtf?)

A simple fix for this problem:

sudo ln -s /usr/bin/clang /Applications/Xcode.app/Contents/Developer/usr/bin/clang

Tags:
Posted on July 27, 2012 at 8:29 PM