We don't want shared boot, so -Bstatic added to ld options

This commit is contained in:
Andrey A. Chernov 1993-11-16 02:02:05 +00:00
parent cf0f1d209c
commit 6683327ab0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=771
2 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@
# the rights to redistribute these changes.
#
# from: Mach, Revision 2.2 92/04/04 11:33:46 rpd
# $Id$
# $Id: Makefile,v 1.3 1993/10/16 19:11:23 rgrimes Exp $
#
wd0:
@ -48,7 +48,7 @@ OBJS = start.o table.o boot2.o boot.o asm.o bios.o io.o disk.o sys.o
$(CC) $(CFLAGS) -c $<
boot: $(OBJS)
$(LD) -N -T 0 -o boot $(OBJS) $(LIBS)
$(LD) -Bstatic -N -T 0 -o boot $(OBJS) $(LIBS)
cp boot boot.sym
@strip boot
@sh ${.CURDIR}/rmaouthdr boot boot.tmp

View File

@ -20,7 +20,7 @@
# the rights to redistribute these changes.
#
# from: Mach, Revision 2.2 92/04/04 11:33:46 rpd
# $Id$
# $Id: Makefile,v 1.3 1993/10/16 19:11:23 rgrimes Exp $
#
wd0:
@ -48,7 +48,7 @@ OBJS = start.o table.o boot2.o boot.o asm.o bios.o io.o disk.o sys.o
$(CC) $(CFLAGS) -c $<
boot: $(OBJS)
$(LD) -N -T 0 -o boot $(OBJS) $(LIBS)
$(LD) -Bstatic -N -T 0 -o boot $(OBJS) $(LIBS)
cp boot boot.sym
@strip boot
@sh ${.CURDIR}/rmaouthdr boot boot.tmp