From 4f325e4c435edb42b59d8890dffe2a56096e1fe8 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Fri, 6 Feb 2015 20:42:03 +0000 Subject: [PATCH] Try to fix Makefile build for LLVMDebugInfoPDB. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228437 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/DebugInfo/Makefile | 2 +- lib/DebugInfo/PDB/Makefile | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 lib/DebugInfo/PDB/Makefile diff --git a/lib/DebugInfo/Makefile b/lib/DebugInfo/Makefile index 9b4cb23690d..27a5e1f0f49 100644 --- a/lib/DebugInfo/Makefile +++ b/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/lib/DebugInfo/PDB/Makefile b/lib/DebugInfo/PDB/Makefile new file mode 100644 index 00000000000..444019e5a18 --- /dev/null +++ b/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 -- 2.34.1