Quote Originally Posted by jdarling
Unfortunately, nothing I build runs properly under Carbon . Command line apps all run ok, but the actual carbon apps just sit their doing nothing .
As mentioned privately, in order for your application to run properly on Mac OS X you need to make use of Application Bundles.

Create the following folder hierarchy...
Code:
MyApp.app ( then right click on it and select "Show Package Contents" )
  Contents
    MacOS
Now copy your Mac OS exe into the MacOS sub-directory.

If you now double click MyApp your application should now work like a normal Carbon application.

I hope this helps others.