summaryrefslogtreecommitdiff
path: root/tools/llvm-symbolizer/Makefile
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2012-11-12 11:33:29 +0000
committerAlexander Potapenko <glider@google.com>2012-11-12 11:33:29 +0000
commitf41954b7328dd53c883810f31cf13d4455199c1d (patch)
tree0f9a8be168e5d22951610d25b033d8b3d322aaeb /tools/llvm-symbolizer/Makefile
parent9a5f90a170ecb4fac028fd85f1affd6dfe13bf16 (diff)
downloadllvm-f41954b7328dd53c883810f31cf13d4455199c1d.tar.gz
llvm-f41954b7328dd53c883810f31cf13d4455199c1d.tar.bz2
llvm-f41954b7328dd53c883810f31cf13d4455199c1d.tar.xz
[ASan] Add llvm-symbolizer from to tools/
This is the second and last (2/2) part of a change that moves llvm-symbolizer to llvm/tools/, which will allow to build it with both cmake and configure+make. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167723 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-symbolizer/Makefile')
-rw-r--r--tools/llvm-symbolizer/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/llvm-symbolizer/Makefile b/tools/llvm-symbolizer/Makefile
new file mode 100644
index 0000000000..5ac83a5813
--- /dev/null
+++ b/tools/llvm-symbolizer/Makefile
@@ -0,0 +1,17 @@
+##===- tools/llvm-symbolizer/Makefile ----------------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL := ../..
+TOOLNAME := llvm-symbolizer
+LINK_COMPONENTS := DebugInfo Object
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS := 1
+
+include $(LEVEL)/Makefile.common