diff options
author | 2016-11-27 01:36:30 +0000 | |
---|---|---|
committer | 2016-11-27 01:36:30 +0000 | |
commit | e5ef593e0478bf2e417cfcfd7f90944178f1f603 (patch) | |
tree | 199625ba692994991bc8e05bbc12093eae579403 | |
parent | Copyright and license (diff) | |
download | wireguard-openbsd-e5ef593e0478bf2e417cfcfd7f90944178f1f603.tar.xz wireguard-openbsd-e5ef593e0478bf2e417cfcfd7f90944178f1f603.zip |
ashldi3 is now needed
-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 |