[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: T without 68881?



I've built a T for sun2's, which don't have 68881's.  Here is the part of my
make file for linking both types.

T-sun3 : t.o $(TOBJS3)
        /bin/ld -e start -o T-sun3 t.o $(TOBJS3A) /lib/Mcrt1.o /lib/crt0.o \
        $(TOBJS3B) -lsunwindow -lm -lc

T-sun2 : t.o $(TOBJS2)
        /bin/ld -e start -o T-sun2 t.o $(TOBJS2A) /lib/crt0.o $(TOBJS2B) \
        -lsunwindow -lm -lc

Notice that the sun2 stuff does not include /lib/Mcrt1.o.  I suspect that
you are linking this in and it is causing the OS to think that an MC68881 is
required (I beleive this initializes the MC68881).  Hope this helps.

	JJHunt