[llvm] r359804 - [gn] Support for building libunwind
Petr Hosek via llvm-commits
llvm-commits at lists.llvm.org
Thu May 2 10:29:37 PDT 2019
Author: phosek
Date: Thu May 2 10:29:37 2019
New Revision: 359804
URL: http://llvm.org/viewvc/llvm-project?rev=359804&view=rev
Log:
[gn] Support for building libunwind
This change introduces support for building libuwind. The library
build should be complete, but not all CMake options have been
replicated in GN. We also don't support tests yet.
We only support two stage build at the moment.
Differential Revision: https://reviews.llvm.org/D60370
Added:
llvm/trunk/utils/gn/secondary/libunwind/
llvm/trunk/utils/gn/secondary/libunwind/BUILD.gn
llvm/trunk/utils/gn/secondary/libunwind/src/
llvm/trunk/utils/gn/secondary/libunwind/src/BUILD.gn
Modified:
llvm/trunk/utils/gn/secondary/BUILD.gn
Modified: llvm/trunk/utils/gn/secondary/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/BUILD.gn?rev=359804&r1=359803&r2=359804&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/BUILD.gn Thu May 2 10:29:37 2019
@@ -11,7 +11,10 @@ group("default") {
"//llvm/test",
]
if (current_os == "linux") {
- deps += [ "//compiler-rt" ]
+ deps += [
+ "//compiler-rt",
+ "//libunwind",
+ ]
}
if (current_os == "linux" || current_os == "android") {
deps += [ "//compiler-rt/test/hwasan" ]
Added: llvm/trunk/utils/gn/secondary/libunwind/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/libunwind/BUILD.gn?rev=359804&view=auto
==============================================================================
--- llvm/trunk/utils/gn/secondary/libunwind/BUILD.gn (added)
+++ llvm/trunk/utils/gn/secondary/libunwind/BUILD.gn Thu May 2 10:29:37 2019
@@ -0,0 +1,5 @@
+group("libunwind") {
+ deps = [
+ "//libunwind/src(//llvm/utils/gn/build/toolchain:stage2_unix)",
+ ]
+}
Added: llvm/trunk/utils/gn/secondary/libunwind/src/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/libunwind/src/BUILD.gn?rev=359804&view=auto
==============================================================================
--- llvm/trunk/utils/gn/secondary/libunwind/src/BUILD.gn (added)
+++ llvm/trunk/utils/gn/secondary/libunwind/src/BUILD.gn Thu May 2 10:29:37 2019
@@ -0,0 +1,124 @@
+import("//clang/runtimes.gni")
+
+declare_args() {
+ # Build libunwind as a shared library.
+ libunwind_enable_shared = true
+
+ # Build libunwind as a static library.
+ libunwind_enable_static = true
+
+ # Do not export any symbols from the static library.
+ libunwind_hermetic_static_library = true
+}
+
+unwind_headers = [
+ "../include/libunwind.h",
+ "../include/unwind.h",
+]
+if (target_os == "mac") {
+ unwind_headers += [
+ # This comment prevents `gn format` from putting the file on the same line
+ # as `sources +=`, for sync_source_lists_from_cmake.py.
+ "../include/mach-o/compact_unwind_encoding.h",
+ ]
+}
+
+unwind_sources = [
+ "libunwind.cpp",
+ "Unwind-EHABI.cpp",
+ "Unwind-seh.cpp",
+ "UnwindLevel1.c",
+ "UnwindLevel1-gcc-ext.c",
+ "Unwind-sjlj.c",
+ "UnwindRegistersRestore.S",
+ "UnwindRegistersSave.S",
+ "AddressSpace.hpp",
+ "assembly.h",
+ "CompactUnwinder.hpp",
+ "config.h",
+ "dwarf2.h",
+ "DwarfInstructions.hpp",
+ "DwarfParser.hpp",
+ "libunwind_ext.h",
+ "Registers.hpp",
+ "RWMutex.hpp",
+ "UnwindCursor.hpp",
+]
+if (target_os == "mac") {
+ unwind_sources += [ "src/Unwind_AppleExtras.cpp" ]
+}
+
+config("unwind_config") {
+ cflags = []
+ cflags_c = [ "-std=c99" ]
+ cflags_cc = [ "-fno-rtti" ]
+ include_dirs = [ "//libunwind/include" ]
+ if (target_os == "mac") {
+ cflags += [ "-U__STRICT_ANSI__" ]
+ }
+}
+
+if (libunwind_enable_shared) {
+ shared_library("unwind_shared") {
+ output_dir = runtimes_dir
+ output_name = "unwind"
+ if (target_os == "linux" || target_os == "mac") {
+ cflags = [ "-fPIC" ]
+ ldflags = [ "-nostdlib++" ]
+ libs = [
+ "dl",
+ "pthread",
+ ]
+ }
+ if (target_os == "mac") {
+ ldflags += [
+ "-compatibility_version 1",
+ "-install_name /usr/lib/libunwind.1.dylib",
+ ]
+ }
+ sources = unwind_sources
+ public = unwind_headers
+ deps = [
+ "//compiler-rt/lib/builtins",
+ ]
+ configs += [ ":unwind_config" ]
+ configs -= [
+ "//llvm/utils/gn/build:no_exceptions",
+ "//llvm/utils/gn/build:no_rtti",
+ ]
+ }
+}
+
+if (libunwind_enable_static) {
+ static_library("unwind_static") {
+ output_dir = runtimes_dir
+ output_name = "unwind"
+ complete_static_lib = true
+ configs -= [ "//llvm/utils/gn/build:thin_archive" ]
+ sources = unwind_sources
+ public = unwind_headers
+ if (libunwind_hermetic_static_library) {
+ cflags = [ "-fvisibility=hidden" ]
+ cflags_cc = [ "-fvisibility-global-new-delete-hidden" ]
+ defines = [ "_LIBUNWIND_DISABLE_VISIBILITY_ANNOTATIONS" ]
+ }
+ deps = [
+ "//compiler-rt/lib/builtins",
+ ]
+ configs += [ ":unwind_config" ]
+ configs -= [
+ "//llvm/utils/gn/build:no_exceptions",
+ "//llvm/utils/gn/build:no_rtti",
+ ]
+ }
+}
+
+group("src") {
+ deps = []
+ if (libunwind_enable_shared) {
+ deps += [ ":unwind_shared" ]
+ }
+ if (libunwind_enable_static) {
+ deps += [ ":unwind_static" ]
+ }
+}
More information about the llvm-commits
mailing list