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.
_______________________________________________
Help-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gnustep