public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* son compler->gcc ERROR questino
@ 2002-01-31 14:49 Jim M.
  0 siblings, 0 replies; only message in thread
From: Jim M. @ 2002-01-31 14:49 UTC (permalink / raw)
  To: gcc

HI,
How can i compile myapp using gcc. How can modify the makefile
to compile and run with gcc instead of sun compiler.
it gives me the following error.
Jim


myserver% make
/usr/local/bin/gcc  -D_KERNEL -xarch=v9 -xcode=abs32 -xregs=no%appl -xO3  -c 
ast
ropci.c
gcc: language O3 not recognized         <------ERROR
gcc: myapp.c: linker input file unused since linking not done
ld -r myapp.o -o myapp
ld: fatal: file myapp.o: open failed: No such file or directory
make: *** [myapp] Error 1

******************************888
myserver% cat Makefile
CC = /usr/local/bin/gcc
#DEFS = -D_KERNEL -DSOLARIS2_7

CFLAGS = -D_KERNEL -xarch=v9 -xcode=abs32 -xregs=no%appl -xO3

LD = ld
LDFLAGS = -r

SRCS = myapp.c myapp_impl.h myapp_io.h
DOCS =

%.o : %.c
        $(CC) $(CFLAGS) $(DEFS) -c $<

myapp: myapp.o
        $(LD) $(LDFLAGS) myapp.o -o myapp

install: myapp
        echo "You must be superuser to install"
        cp -p myapp /kernel/drv/sparcv9/
        cp -p myapp.conf /kernel/drv/
        add_drv -i '"pci1057,1801"' -m '* 0666 bin bin' myapp

reinstall: myapp
        echo "You must be superuser to re-install"
        rem_drv myapp
        cp myapp /kernel/drv/sparcv9/
        add_drv -i '"pci1057,1801"' -m '* 0666 bin bin' myapp

clean:
        $(RM) myapp.o myapp .myapp*

pack: myapp clean
        tar cvf myapp.tar  myapp $(SRCS) Makefile $(DOCS)
        compress myapp.tar

myapp.o : myapp.c






_________________________________________________________________
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-01-31 20:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-01-31 14:49 son compler->gcc ERROR questino Jim M.

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).