On Tue, 14 Nov 2000 [EMAIL PROTECTED] wrote:
> 
> On Tue, 14 Nov 2000, Andrew Lynch wrote:
> 
> > Eric, Thank you for the suggestion. I entered the
> > command you specified in Cygwin
> >
> > gcc -g -S -O2 -Wall -o bin2res bin2res.o

   Note that with this command the assembly file will be called
'bin2res' instead of 'bin2res.s' (because of -o). 
   So you should look at the file 'bin2res' (it should be text), or run
the following command and look at the file 'bin2res.s':

   gcc -g -S -O2 -Wall -o bin2res.s bin2res.o

[...]
> > gcc: bin2res.o: linker output file unused since
> > linking not done

   I don't understand why gcc is printing this message since it should
not even try to link in the first place and we did not specify any .o
file. If the above does not work, check that on cygwin gcc
supports the '-S' option.


--
Francois Gouget         [EMAIL PROTECTED]        http://fgouget.free.fr/
 Advice is what we ask for when we already know the answer but wish we didn't
                                 -- Eric Jong


Reply via email to