diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-08-02 15:38:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-08-02 15:38:53 +0000 |
commit | 43fdc2d10cb5849a05f14f3193e40e500d7b353e (patch) | |
tree | 69cdf95b2cdb18e35530f9b38a78180ddb523eab /sys/arch/amd64/stand | |
parent | b5385c5f3517f1de0d85d0c1250ab718a60e12be (diff) |
additional files from libkern will be needed by clang10
from mortimer
Diffstat (limited to 'sys/arch/amd64/stand')
-rw-r--r-- | sys/arch/amd64/stand/boot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/amd64/stand/cdboot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/amd64/stand/efiboot/Makefile.common | 4 | ||||
-rw-r--r-- | sys/arch/amd64/stand/pxeboot/Makefile | 5 |
4 files changed, 9 insertions, 8 deletions
diff --git a/sys/arch/amd64/stand/boot/Makefile b/sys/arch/amd64/stand/boot/Makefile index 3735f8d626d..301b095f583 100644 --- a/sys/arch/amd64/stand/boot/Makefile +++ b/sys/arch/amd64/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.46 2020/06/14 16:00:08 deraadt Exp $ +# $OpenBSD: Makefile,v 1.47 2020/08/02 15:38:48 deraadt Exp $ COPTS?= MAN?= boot.8 @@ -49,7 +49,7 @@ SRCS+= aes_xts.c bcrypt_pbkdf.c blowfish.c explicit_bzero.c hmac_sha1.c \ .endif .PATH: ${S}/lib/libkern -SRCS+= divdi3.c moddi3.c qdivrem.c +SRCS+= ashldi3.c ashrdi3.c divdi3.c lshrdi3.c moddi3.c qdivrem.c SRCS+= strlcpy.c .PATH: ${S}/lib/libz diff --git a/sys/arch/amd64/stand/cdboot/Makefile b/sys/arch/amd64/stand/cdboot/Makefile index 696556d8f98..cfad69d6479 100644 --- a/sys/arch/amd64/stand/cdboot/Makefile +++ b/sys/arch/amd64/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.41 2020/06/14 16:00:11 deraadt Exp $ +# $OpenBSD: Makefile,v 1.42 2020/08/02 15:38:50 deraadt Exp $ MAN= cdboot.8 @@ -36,7 +36,7 @@ SRCS+= aes_xts.c bcrypt_pbkdf.c blowfish.c explicit_bzero.c hmac_sha1.c \ pkcs5_pbkdf2.c rijndael.c sha1.c sha2.c softraid.c .PATH: ${S}/lib/libkern/arch/i386 ${S}/lib/libkern -SRCS+= divdi3.c moddi3.c qdivrem.c +SRCS+= ashldi3.c ashrdi3.c divdi3.c lshrdi3.c moddi3.c qdivrem.c .PATH: ${S}/lib/libz SRCS+= adler32.c crc32.c inflate.c inftrees.c diff --git a/sys/arch/amd64/stand/efiboot/Makefile.common b/sys/arch/amd64/stand/efiboot/Makefile.common index 6f8b9c76815..66b26ce8fd2 100644 --- a/sys/arch/amd64/stand/efiboot/Makefile.common +++ b/sys/arch/amd64/stand/efiboot/Makefile.common @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.common,v 1.20 2020/03/05 16:36:30 otto Exp $ +# $OpenBSD: Makefile.common,v 1.21 2020/08/02 15:38:52 deraadt Exp $ S= ${.CURDIR}/../../../../.. SADIR= ${.CURDIR}/../.. @@ -48,7 +48,7 @@ SRCS+= aes_xts.c bcrypt_pbkdf.c blowfish.c explicit_bzero.c hmac_sha1.c \ SRCS+= adler32.c crc32.c inflate.c inftrees.c .PATH: ${S}/lib/libkern -SRCS+= divdi3.c moddi3.c qdivrem.c +SRCS+= ashldi3.c ashrdi3.c divdi3.c lshrdi3.c moddi3.c qdivrem.c SRCS+= strlcpy.c .PATH: ${SADIR}/libsa diff --git a/sys/arch/amd64/stand/pxeboot/Makefile b/sys/arch/amd64/stand/pxeboot/Makefile index 5478916df1a..cbcef7fe593 100644 --- a/sys/arch/amd64/stand/pxeboot/Makefile +++ b/sys/arch/amd64/stand/pxeboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.39 2020/06/14 16:00:11 deraadt Exp $ +# $OpenBSD: Makefile,v 1.40 2020/08/02 15:38:52 deraadt Exp $ MAN= pxeboot.8 @@ -43,7 +43,8 @@ SRCS+= bootp.c bootparam.c SRCS+= ufs.c ufs2.c nfs.c tftp.c .PATH: ${S}/lib/libkern/arch/amd64 ${S}/lib/libkern -SRCS+= divdi3.c moddi3.c qdivrem.c udivdi3.c umoddi3.c +SRCS+= ashldi3.c ashrdi3.c divdi3.c lshrdi3.c moddi3.c qdivrem.c +SRCS+= udivdi3.c umoddi3.c .PATH: ${S}/lib/libz SRCS+= adler32.c crc32.c inflate.c inftrees.c |