diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-11-27 01:36:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-11-27 01:36:31 +0000 |
commit | 6bb72dd7c4f7649ca47ed1afe9fb0c641e71ce90 (patch) | |
tree | 0877995d7acb972bee10310675593ecd435c5c74 /sys/arch/hppa/stand | |
parent | 022df891bf60826a2cd0b00b1480edee6d9f3d1c (diff) |
ashldi3 is now needed
Diffstat (limited to 'sys/arch/hppa/stand')
-rw-r--r-- | sys/arch/hppa/stand/boot/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/hppa/stand/boot/Makefile b/sys/arch/hppa/stand/boot/Makefile index 1d354d9e740..77ef969498c 100644 --- a/sys/arch/hppa/stand/boot/Makefile +++ b/sys/arch/hppa/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.26 2016/07/30 03:25:48 guenther Exp $ +# $OpenBSD: Makefile,v 1.27 2016/11/27 01:36:30 deraadt Exp $ MAN= boot.8 MANSUBDIR=hppa @@ -13,8 +13,9 @@ SRCS= srt0.S exec.c conf.c SRCS+= bootarg.c boot.c vars.c cmd.c .PATH: ${S}/lib/libkern/arch/hppa ${S}/lib/libkern -SRCS+= milli.S ashrdi3.c memcmp.c memcpy.c memset.c moddi3.c muldi3.c \ - qdivrem.c strcmp.c strlcpy.c strlen.c strncmp.c strncpy.c divdi3.c +SRCS+= milli.S ashldi3.c ashrdi3.c memcmp.c memcpy.c memset.c \ + moddi3.c muldi3.c qdivrem.c strcmp.c strlcpy.c strlen.c \ + strncmp.c strncpy.c divdi3.c LD?= ld LDFLAGS+=-Bstatic -nostartfiles -nostdlib -N -Ttext $(LINKADDR) -nopie -znorelro |