svn commit: r358033 - projects/clang1000-import/lib/clang/libllvm

Dimitry Andric dim at FreeBSD.org
Mon Feb 17 18:51:53 UTC 2020


Author: dim
Date: Mon Feb 17 18:51:52 2020
New Revision: 358033
URL: https://svnweb.freebsd.org/changeset/base/358033

Log:
  Work around riscv buildworld failure where it cannot link the final
  clang binary, with:
  
  ld: error: undefined symbol: llvm::EnableABIBreakingChecks
  >>> referenced by PlistDiagnostics.cpp
  >>>               PlistDiagnostics.o:(.sdata+0x0) in archive /usr/obj/usr/src/riscv.riscv64/lib/clang/libclang/libclang.a
  [... many more like this ...]

Modified:
  projects/clang1000-import/lib/clang/libllvm/Makefile

Modified: projects/clang1000-import/lib/clang/libllvm/Makefile
==============================================================================
--- projects/clang1000-import/lib/clang/libllvm/Makefile	Mon Feb 17 18:40:00 2020	(r358032)
+++ projects/clang1000-import/lib/clang/libllvm/Makefile	Mon Feb 17 18:51:52 2020	(r358033)
@@ -825,6 +825,7 @@ SRCS_MIN+=	Remarks/RemarkSerializer.cpp
 SRCS_MIN+=	Remarks/RemarkStringTable.cpp
 SRCS_MIN+=	Remarks/YAMLRemarkSerializer.cpp
 SRCS_MIN+=	Support/AArch64TargetParser.cpp
+SRCS_MIN+=	Support/ABIBreak.cpp
 SRCS_MIN+=	Support/APFloat.cpp
 SRCS_MIN+=	Support/APInt.cpp
 SRCS_MIN+=	Support/APSInt.cpp


More information about the svn-src-projects mailing list