diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2020-08-03 14:45:32 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2020-08-03 14:45:32 +0000 |
commit | 8c3269248d83f86b317d96a4b650659e2a97473a (patch) | |
tree | ab4705fe98e8bf956c9b1c6f09d546b90c489275 /gnu/usr.bin/clang/Makefile.arch | |
parent | 7e0762870f961466d585c29c6992b4dd4608d2e6 (diff) |
Update build infrastructure for LLVM 10.0.0.
ok hackroom@
tested by plenty
Diffstat (limited to 'gnu/usr.bin/clang/Makefile.arch')
-rw-r--r-- | gnu/usr.bin/clang/Makefile.arch | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/usr.bin/clang/Makefile.arch b/gnu/usr.bin/clang/Makefile.arch index 85deb95ac92..6e544f15af3 100644 --- a/gnu/usr.bin/clang/Makefile.arch +++ b/gnu/usr.bin/clang/Makefile.arch @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.arch,v 1.7 2020/05/30 19:22:00 drahn Exp $ +# $OpenBSD: Makefile.arch,v 1.8 2020/08/03 14:45:22 patrick Exp $ LLVM_ARCHS=AArch64 AMDGPU ARM Mips PowerPC Sparc X86 @@ -18,7 +18,6 @@ LLVM_ARCH= Mips .endif BACKEND_ASMPARSER?= -BACKEND_ASMPRINTER?= BACKEND_CODEGEN?= BACKEND_DESC?= BACKEND_DISASSEMBLER?= @@ -28,7 +27,6 @@ BACKEND_UTILS?= .for arch in ${LLVM_ARCHS} .if "${arch}" == ${LLVM_ARCH} || "${arch}" == "AMDGPU" || make(obj) BACKEND_ASMPARSER+= LLVM${arch}AsmParser -BACKEND_ASMPRINTER+= LLVM${arch}AsmPrinter BACKEND_CODEGEN+= LLVM${arch}CodeGen BACKEND_DESC+= LLVM${arch}Desc BACKEND_DISASSEMBLER+= LLVM${arch}Disassembler @@ -41,7 +39,6 @@ BACKEND_UTILS+= LLVM${arch}Utils .endfor BACKEND_LIBS+= ${BACKEND_ASMPARSER} -BACKEND_LIBS+= ${BACKEND_ASMPRINTER} BACKEND_LIBS+= ${BACKEND_CODEGEN} BACKEND_LIBS+= ${BACKEND_DESC} BACKEND_LIBS+= ${BACKEND_DISASSEMBLER} |