public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* install gcc made app question
@ 2002-02-01 15:25 Jim M.
  0 siblings, 0 replies; only message in thread
From: Jim M. @ 2002-02-01 15:25 UTC (permalink / raw)
  To: gcc-help

converted the CFLAGS  (followed your suggestions) to
be compatible with the gcc driver compiles ok, but
geting a failure to attach and no print messages when
tried to install the driver.

sun compiler compatible makefile:
CC = /usr/local/bin/gcc
#DEFS = -D_KERNEL -DSOLARIS2_7

CFLAGS = -D_KERNEL -xarch=v9 -xcode=abs32
-regs=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



_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

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

only message in thread, other threads:[~2002-02-01 23:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-02-01 15:25 install gcc made app question 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).