]> granicus.if.org Git - llvm/commitdiff
gn build: Add a stage2 host toolchain and make the hwasan runtime buildable on x86_64...
authorPeter Collingbourne <peter@pcc.me.uk>
Tue, 15 Jan 2019 22:02:12 +0000 (22:02 +0000)
committerPeter Collingbourne <peter@pcc.me.uk>
Tue, 15 Jan 2019 22:02:12 +0000 (22:02 +0000)
Differential Revision: https://reviews.llvm.org/D56711

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351258 91177308-0d34-0410-b5e6-96231b3b80d8

utils/gn/build/toolchain/BUILD.gn
utils/gn/secondary/BUILD.gn
utils/gn/secondary/compiler-rt/lib/hwasan/BUILD.gn
utils/gn/secondary/compiler-rt/lib/sanitizer_common/BUILD.gn
utils/gn/secondary/compiler-rt/target.gni [new file with mode: 0644]

index 31140ec081e7101fdde208414502d20ccb368e20..97c64ffdf2d05fa5ef9a0175e5c420e73ad20cc1 100644 (file)
@@ -150,8 +150,10 @@ unix_toolchain("unix") {
   }
 }
 
-if (android_ndk_path != "") {
-  unix_toolchain("stage2_android_aarch64") {
+template("stage2_unix_toolchain") {
+  unix_toolchain(target_name) {
+    forward_variables_from(invoker, "*")
+
     cc = "bin/clang"
     cxx = "bin/clang++"
     ld = cxx
@@ -162,7 +164,19 @@ if (android_ndk_path != "") {
       "//:lld($host_toolchain)",
       "//:llvm-ar($host_toolchain)",
     ]
+  }
+}
+
+stage2_unix_toolchain("stage2_unix") {
+  toolchain_args = {
+    current_os = host_os
+    current_cpu = host_cpu
+    use_lld = host_os != "mac"
+  }
+}
 
+if (android_ndk_path != "") {
+  stage2_unix_toolchain("stage2_android_aarch64") {
     toolchain_args = {
       current_os = "android"
       current_cpu = "arm64"
index 229775953a4fad1a64f6f11e0eb71d7949764919..a696e3645d0980f45dce9d3b2b941c70462cef45 100644 (file)
@@ -9,9 +9,9 @@ group("default") {
     "//llvm/test",
   ]
 
+  # FIXME: This should be a dependency of a test target instead of being
+  # depended on from here.
   if (android_ndk_path != "") {
-    # FIXME: This should be a dependency of a test target instead of being
-    # depended on from here.
     android_aarch64_toolchain =
         "//llvm/utils/gn/build/toolchain:stage2_android_aarch64"
     deps += [
@@ -19,6 +19,9 @@ group("default") {
       "//llvm/tools/llvm-symbolizer($android_aarch64_toolchain)",
     ]
   }
+  if (host_cpu == "x64" && host_os == "linux") {
+    deps += [ "//compiler-rt/lib/hwasan:hwasan_shared(//llvm/utils/gn/build/toolchain:stage2_unix)" ]
+  }
 
   testonly = true
 }
index 9f4c697cc01157db92472ccba53680161a413c1c..81b6f60d3d1e14e3634894798d2a21b9224f1c9a 100644 (file)
@@ -1,10 +1,4 @@
-import("//clang/resource_dir.gni")
-
-# FIXME: Make this support more platforms.
-assert(current_os == "android")
-
-runtime_output_dir = "$clang_resource_dir/lib/linux"
-runtime_target = "aarch64-android"
+import("//compiler-rt/target.gni")
 
 action("version_script") {
   script = "//compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py"
@@ -22,10 +16,11 @@ action("version_script") {
     "--version-list",
     "--extra",
     rebase_path(sources[0], root_build_dir),
-    rebase_path("$runtime_output_dir/libclang_rt.hwasan-$runtime_target.a",
-                root_build_dir),
-    rebase_path("$runtime_output_dir/libclang_rt.hwasan_cxx-$runtime_target.a",
+    rebase_path("$crt_current_out_dir/libclang_rt.hwasan-$crt_current_target.a",
                 root_build_dir),
+    rebase_path(
+        "$crt_current_out_dir/libclang_rt.hwasan_cxx-$crt_current_target.a",
+        root_build_dir),
     "-o",
     rebase_path(outputs[0], root_build_dir),
   ]
@@ -66,8 +61,8 @@ source_set("cxx_sources") {
 }
 
 static_library("hwasan") {
-  output_dir = runtime_output_dir
-  output_name = "clang_rt.hwasan-$runtime_target"
+  output_dir = crt_current_out_dir
+  output_name = "clang_rt.hwasan-$crt_current_target"
   complete_static_lib = true
   configs -= [ "//llvm/utils/gn/build:llvm_code" ]
   configs += [ "//llvm/utils/gn/build:crt_code" ]
@@ -77,8 +72,8 @@ static_library("hwasan") {
 }
 
 static_library("hwasan_cxx") {
-  output_dir = runtime_output_dir
-  output_name = "clang_rt.hwasan_cxx-$runtime_target"
+  output_dir = crt_current_out_dir
+  output_name = "clang_rt.hwasan_cxx-$crt_current_target"
   complete_static_lib = true
   configs -= [ "//llvm/utils/gn/build:llvm_code" ]
   configs += [ "//llvm/utils/gn/build:crt_code" ]
@@ -88,8 +83,8 @@ static_library("hwasan_cxx") {
 }
 
 shared_library("hwasan_shared") {
-  output_dir = runtime_output_dir
-  output_name = "clang_rt.hwasan-$runtime_target"
+  output_dir = crt_current_out_dir
+  output_name = "clang_rt.hwasan-$crt_current_target"
   configs -= [ "//llvm/utils/gn/build:llvm_code" ]
   configs += [ "//llvm/utils/gn/build:crt_code" ]
   deps = [
index af0f2903e51431def414686982299bc777f45174..7d280bd060e2ce38229ab37825175ac278922fd7 100644 (file)
@@ -1,6 +1,16 @@
 source_set("sources") {
   configs -= [ "//llvm/utils/gn/build:llvm_code" ]
   configs += [ "//llvm/utils/gn/build:crt_code" ]
+  deps = [
+    "//llvm/utils/gn/build/libs/pthread",
+  ]
+  libs = []
+  if (current_os == "linux" || current_os == "android") {
+    libs += [ "dl" ]
+  }
+  if (current_os == "linux") {
+    libs += [ "rt" ]
+  }
   sources = [
     "sancov_flags.cc",
     "sanitizer_allocator.cc",
@@ -67,4 +77,7 @@ source_set("sources") {
     "sanitizer_unwind_win.cc",
     "sanitizer_win.cc",
   ]
+  if (current_cpu == "x64") {
+    sources += [ "sanitizer_linux_x86_64.S" ]
+  }
 }
diff --git a/utils/gn/secondary/compiler-rt/target.gni b/utils/gn/secondary/compiler-rt/target.gni
new file mode 100644 (file)
index 0000000..7ea73b1
--- /dev/null
@@ -0,0 +1,20 @@
+import("//clang/resource_dir.gni")
+
+if (current_os == "linux" || current_os == "android") {
+  crt_current_out_dir = "$clang_resource_dir/lib/linux"
+} else {
+  assert(false, "unimplemented current_os " + current_os)
+}
+
+if (current_cpu == "x64") {
+  crt_current_target_arch = "x86_64"
+} else if (current_cpu == "arm64") {
+  crt_current_target_arch = "aarch64"
+} else {
+  assert(false, "unimplemented current_cpu " + current_cpu)
+}
+
+crt_current_target = crt_current_target_arch
+if (current_os == "android") {
+  crt_current_target += "-android"
+}