On 2010-05-11, at 18:29, Tachdaun topposted what was fixed later to: >> >> I think the problem is that you haven't installed OS X developer >> tools. >> You can get them here: http://developer.apple.com/technologies/tools/xcode.html >> > > I Have Xcode 3.2.2 installed, it has gcc-4.0 and gcc-4.2, and a > symbolic link named gcc pointing to gcc-4.2, so that's the gcc make > is using, I guess. I use Xcode every day to code in C and C++ so > yes, I can compile, although never used gcc directly, but Xcode uses > it and works fine. > > Ok, so I'll try using pahts to my XCode C headers and try again As Mark already pointed out - you should not need to "use" anything beyond a simple make call. He also gave you excellent brief tutorial on how to troubleshoot your installation. If it doesn't work as he described then something is wrong. The first suspicious thing is / Developer/usr/bin/gnumake with regular installation you should not be using any fancy paths to get to your command line tools. make should be a symlink to gnumake residing in regular /usr/bin/ NanJing:~ silverdr$ which make /usr/bin/make NanJing:~ silverdr$ ll /usr/bin/make lrwxr-xr-x 1 root wheel 7 20 gru 2008 /usr/bin/make@ -> gnumake NanJing:~ silverdr$ ll /usr/bin/gnumake -rwxr-xr-x 1 root wheel 316576 19 lut 2008 /usr/bin/gnumake* NanJing:~ silverdr$ So this looks like your paths are already - in a way - wrong. I (also) suggest that you double check your installation and/or reinstall developer tools using the default settings and locations. -- SD! ---------------------------------------------------------------------- To unsubscribe from the list send mail to majordomo@musoftware.de with the string "unsubscribe cc65" in the body(!) of the mail.Received on Tue May 11 19:31:31 2010
This archive was generated by hypermail 2.1.8 : 2010-05-11 19:31:33 CEST