Re: followup to an old newbie question on cc1obj. what/where is it?

Adam Fedor <[email protected]> Thu, 18 Sep 2008 16:17:40 -0600
Newsgroups gmane.comp.lib.gnustep.user
Message-ID <[email protected]>
OK, Let's go through this from the beginning to make sure I understand.

If you installed the GNUstep Window's installer (both gnustep-system  
and gnustep-core), then you should have a full MSYS/MingW system all  
set up correctly with gcc and everything.  Go to the "Start" button  
and select:

Programs -> GNUstep -> Shell

This should open up something that looks like a terminal window with a  
yellow background.
Typing

gcc -v

should give you useful information on what gvv version you are using  
(3.4.5). You also ought to be able to compile a simpe test program:

--------- test.m ---------
#import <objc/Object.h>

int main()
{
   id a = [Object new];
   return 0;
}
----------------------------

gcc -o test test.m -lobjc

Does that work?

BTW, I just released a new version of the Window's installer at

http://www.gnustep.org/experience/Windows.html

which supposedly works better with Vista, but I have no idea if it  
does or not.