diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2020-04-06 16:23:45 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2020-04-06 16:23:45 +0000 |
commit | 1c28d0f8baeffebc48318184ee4b0f274f393f78 (patch) | |
tree | 047e2e667149155730d84f3916c642b28f0936b9 /sys/arch | |
parent | 01352407bf0341417d131ae985db43141950e3d4 (diff) |
Build bootecoff with divdi3.c. bootecoff needs __divdi3,
but the linker does not complain about missing symbols.
Prompted by miod@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sgi/stand/bootecoff/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/stand/bootecoff/Makefile b/sys/arch/sgi/stand/bootecoff/Makefile index 10feda4723c..ff2505cbed2 100644 --- a/sys/arch/sgi/stand/bootecoff/Makefile +++ b/sys/arch/sgi/stand/bootecoff/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2012/03/19 17:38:31 miod Exp $ +# $OpenBSD: Makefile,v 1.2 2020/04/06 16:23:44 visa Exp $ .include "${.CURDIR}/../Makefile32.inc" STRIP?= strip @@ -8,7 +8,7 @@ PROG= bootecoff .PATH: ${.CURDIR}/../boot .include "${.CURDIR}/../boot/Makefile" -SRCS+= ashrdi3.c moddi3.c udivdi3.c umoddi3.c qdivrem.c +SRCS+= ashrdi3.c divdi3.c moddi3.c udivdi3.c umoddi3.c qdivrem.c ${PROG}: $(OBJS) $(LDADD) $(LD) $(LDFLAGS) -o ${PROG} $(OBJS) -L${LIBSADIR} ${LIBSA} \ |