diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2021-05-19 23:18:41 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2021-05-19 23:18:41 +0000 |
commit | ae17eb7a958f527b4ceb74a2e2c3b52080dbc0d3 (patch) | |
tree | 303134268ca632873c82c37778e310cd52874269 /gnu/usr.bin/clang | |
parent | ad1fe0f66d4fec1a6c3f81b738eeab47ed8b69b7 (diff) |
Revert hack to build clang with -static on riscv64.
This 'requirement' was due to a bug in dtors which has been corrected.
reminded by jsg@
Diffstat (limited to 'gnu/usr.bin/clang')
-rw-r--r-- | gnu/usr.bin/clang/Makefile.inc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/usr.bin/clang/Makefile.inc b/gnu/usr.bin/clang/Makefile.inc index 4928765acb4..208d27059ae 100644 --- a/gnu/usr.bin/clang/Makefile.inc +++ b/gnu/usr.bin/clang/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.23 2021/05/14 02:29:00 drahn Exp $ +# $OpenBSD: Makefile.inc,v 1.24 2021/05/19 23:18:40 drahn Exp $ CLANG_SRCS?= ${.CURDIR}/../../../llvm/clang LLDB_SRCS?= ${.CURDIR}/../../../llvm/lldb @@ -16,10 +16,6 @@ CC= egcc CXX= eg++ .endif -.if ${MACHINE_ARCH} == "riscv64" -LDSTATIC=-static -.endif - DEBUG= NOPIE= |