Total Posts: 74
Joined: September 11, 2011
|
Hi Rolith,
It sounds like you are having the same problems I had when setting the HaXe NME environment up..
The latest version of Xcode (from the app store) has changed all the directories around, and NME has not been update to fix these issues yet!
To fix the make error, you need to add the new directory to your PATH variable, just execute this command in terminal:
'export PATH=$PATH:/Applications/Xcode.app/Contents/Developer/usr/bin'
Once that's done, you should be able to type 'make' into terminal and it should work. However, you still might not be able to build NME apps, one more directory change is the developer directory from '/Developer/' to the /Applications/Xcode.app/
So we need to create a symbolic link like so
'sudo ln -s /Applications/Xcode.app/Contents/Developer /Developer'
And voila! Everything *should* work!
Posted on February 29, 2012 at 3:41 PM
|