This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: FW: question
- To: Mark dot Edwards at sunh dot com
- Subject: Re: FW: question
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Fri, 10 Mar 2000 09:13:42 +0100
- CC: gnu at gnu dot org, gcc at gnu dot org, help-gcc at gnu dot org
- References: <200003091659.LAA06207@delysid.gnu.org>
> i tried (and failed):
>
> > gcc helloworld.c
> as: "/var/tmp/ccIJzYda.s", line 22: error 1052: Directive name not
> recognized - NSUBSPA
>
> > cat helloworld.c
> int main()
> {
> printf ("Hello world!..\n");
> return (0);
> }
>
> any thoughs??
You did not say where you obtained gcc-2_95_2-sd-11_00_depot.gz, nor
whether it was meant to be used with the "bundled assembler" or the
"GNU assembler", and which one you are using. Anyway, to understand
the problem better, please run the compiler as
gcc helloworld.c --save-temps
and let us know what line 22 of helloworld.s is.
Regards,
Martin