diff options
author | Zachary Turner <zturner@google.com> | 2015-02-06 20:42:03 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-06 20:42:03 +0000 |
commit | 8022f24fe88f05d51c638d3ecd8b03f830b626c4 (patch) | |
tree | caf68e6fd8d9b34f056ddc3821647cd182cd2223 /llvm/lib | |
parent | a8059559105e6c94cd4529823345d325ae5b9d9c (diff) | |
download | bcm5719-llvm-8022f24fe88f05d51c638d3ecd8b03f830b626c4.tar.gz bcm5719-llvm-8022f24fe88f05d51c638d3ecd8b03f830b626c4.zip |
Try to fix Makefile build for LLVMDebugInfoPDB.
llvm-svn: 228437
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/DebugInfo/Makefile | 2 | ||||
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Makefile | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/Makefile b/llvm/lib/DebugInfo/Makefile index 9b4cb23690d..27a5e1f0f49 100644 --- a/llvm/lib/DebugInfo/Makefile +++ b/llvm/lib/DebugInfo/Makefile @@ -10,6 +10,6 @@ LEVEL = ../.. include $(LEVEL)/Makefile.config -PARALLEL_DIRS := DWARF +PARALLEL_DIRS := DWARF PDB include $(LEVEL)/Makefile.common
\ No newline at end of file diff --git a/llvm/lib/DebugInfo/PDB/Makefile b/llvm/lib/DebugInfo/PDB/Makefile new file mode 100644 index 00000000000..444019e5a18 --- /dev/null +++ b/llvm/lib/DebugInfo/PDB/Makefile @@ -0,0 +1,14 @@ +##===- lib/DebugInfo/PDB/Makefile --------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../../.. +LIBRARYNAME = LLVMDebugInfoPDB +BUILD_ARCHIVE := 1 + +include $(LEVEL)/Makefile.common |