diff options
| author | Ed Maste <emaste@freebsd.org> | 2015-03-04 01:05:52 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@freebsd.org> | 2015-03-04 01:05:52 +0000 |
| commit | 2ac86d6feee1c8fec01bbdcdae3997e679d7a6ef (patch) | |
| tree | 4b6b1d9348bfac1d94505ce8eda1b498e1bae54d | |
| parent | 6b797288159596ca2c01f977e72122e9a5a6f429 (diff) | |
| download | bcm5719-llvm-2ac86d6feee1c8fec01bbdcdae3997e679d7a6ef.tar.gz bcm5719-llvm-2ac86d6feee1c8fec01bbdcdae3997e679d7a6ef.zip | |
Another configure+make fix for r230963
llvm-svn: 231188
| -rw-r--r-- | lldb/source/Plugins/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Makefile b/lldb/source/Plugins/Makefile index 8c75f8636df..42a7066d4db 100644 --- a/lldb/source/Plugins/Makefile +++ b/lldb/source/Plugins/Makefile @@ -1,5 +1,5 @@ ##===- source/Plugins/Makefile -----------------------------*- Makefile -*-===## -# + # The LLVM Compiler Infrastructure # # This file is distributed under the University of Illinois Open Source @@ -25,6 +25,7 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 LanguageRuntime/ObjC/AppleObjCRuntime \ DynamicLoader/POSIX-DYLD \ DynamicLoader/Hexagon-DYLD \ + DynamicLoader/MacOSX-DYLD \ OperatingSystem/Python \ SystemRuntime/MacOSX \ SymbolVendor/ELF \ @@ -33,7 +34,7 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 ifeq ($(HOST_OS),Darwin) PARALLEL_DIRS += Process/MacOSX-Kernel -PARALLEL_DIRS += DynamicLoader/MacOSX-DYLD DynamicLoader/Darwin-Kernel +PARALLEL_DIRS += DynamicLoader/Darwin-Kernel PARALLEL_DIRS += SymbolVendor/MacOSX #PARALLEL_DIRS += Process/MacOSX-User PARALLEL_DIRS += Process/mach-core @@ -42,7 +43,6 @@ PARALLEL_DIRS += JITLoader/GDB endif ifeq ($(HOST_OS),Linux) -PARALLEL_DIRS += DynamicLoader/MacOSX-DYLD PARALLEL_DIRS += Process/Linux Process/POSIX PARALLEL_DIRS += Process/elf-core PARALLEL_DIRS += JITLoader/GDB |

