[llvm] r360629 - [gn] Fix build

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Mon May 13 15:30:53 PDT 2019


Author: vitalybuka
Date: Mon May 13 15:30:53 2019
New Revision: 360629

URL: http://llvm.org/viewvc/llvm-project?rev=360629&view=rev
Log:
[gn] Fix build

Modified:
    llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn
    llvm/trunk/utils/gn/secondary/clang/lib/Headers/BUILD.gn
    llvm/trunk/utils/gn/secondary/compiler-rt/test/BUILD.gn

Modified: llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn?rev=360629&r1=360628&r2=360629&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn Mon May 13 15:30:53 2019
@@ -66,6 +66,7 @@ static_library("AST") {
     "InheritViz.cpp",
     "ItaniumCXXABI.cpp",
     "ItaniumMangle.cpp",
+    "JSONNodeDumper.cpp",
     "Mangle.cpp",
     "MicrosoftCXXABI.cpp",
     "MicrosoftMangle.cpp",

Modified: llvm/trunk/utils/gn/secondary/clang/lib/Headers/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/clang/lib/Headers/BUILD.gn?rev=360629&r1=360628&r2=360629&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/clang/lib/Headers/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/clang/lib/Headers/BUILD.gn Mon May 13 15:30:53 2019
@@ -160,6 +160,7 @@ copy("Headers") {
     "openmp_wrappers/math.h",
     "openmp_wrappers/cmath",
     "openmp_wrappers/__clang_openmp_math.h",
+    "openmp_wrappers/__clang_openmp_math_declares.h",
   ]
   outputs = [
     "$clang_resource_dir/include/{{source_target_relative}}",

Modified: llvm/trunk/utils/gn/secondary/compiler-rt/test/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/compiler-rt/test/BUILD.gn?rev=360629&r1=360628&r2=360629&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/compiler-rt/test/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/compiler-rt/test/BUILD.gn Mon May 13 15:30:53 2019
@@ -34,6 +34,8 @@ write_cmake_config("lit_common_configure
     "LLVM_TOOLS_DIR=" + rebase_path("$root_build_dir/bin"),
     "LLVM_LIBRARY_OUTPUT_INTDIR=" + rebase_path("$root_build_dir/lib"),
 
+    "LLVM_LIBCXX_USED=0",
+
     "GOLD_EXECUTABLE=ld",
     "COMPILER_RT_RESOLVED_TEST_COMPILER=" +
         rebase_path("$root_build_dir/bin/clang"),




More information about the llvm-commits mailing list