Re: Installing
"Steven Quinones-Colon" <[email protected]> Thu, 12 Apr 2007 21:57:21 -0700
| Newsgroups | gmane.comp.lib.gnustep.user |
|---|---|
| Message-ID | <[email protected]> |
>
> You're using your own build of gcc it seems...did you include
> objective-c in LANGUAGES when you built it?
>
> Cheers,
> Graham.
>
>
I seem to be able to compile objective-c programs.
I used this as a test:
#import <stdio.h>
int main (int argc, const char *argv[])
{
printf ("Programming is fun.\n");
return 0;
}
I compile as such:
gcc main.m -o prog1 -lobjc
And it compiles and runs correctly.
If I remember correctly I didn't specify language, so it must have
built all languages. Do you mean that I was supposed to give it a
flag of some kind so GNUstep will work?
Steven