diff options
| -rw-r--r-- | lldb/source/Makefile | 2 | ||||
| -rw-r--r-- | lldb/source/Plugins/Makefile | 38 | ||||
| -rw-r--r-- | lldb/source/Plugins/Platform/Makefile | 2 |
3 files changed, 21 insertions, 21 deletions
diff --git a/lldb/source/Makefile b/lldb/source/Makefile index c716c480876..98076708aaf 100644 --- a/lldb/source/Makefile +++ b/lldb/source/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LLDB_LEVEL := .. -DIRS := API Breakpoint Commands Core DataFormatters Expression Host Interpreter Plugins Symbol Target Utility +PARALLEL_DIRS := API Breakpoint Commands Core DataFormatters Expression Host Interpreter Plugins Symbol Target Utility LIBRARYNAME := lldbInitAndLog BUILD_ARCHIVE = 1 diff --git a/lldb/source/Plugins/Makefile b/lldb/source/Plugins/Makefile index 4302973c780..31964ee48c3 100644 --- a/lldb/source/Plugins/Makefile +++ b/lldb/source/Plugins/Makefile @@ -12,7 +12,7 @@ LLDB_LEVEL := ../.. include $(LLDB_LEVEL)/../../Makefile.config -DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 \ +PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 \ ABI/SysV-hexagon \ Disassembler/llvm \ ObjectContainer/BSD-Archive ObjectFile/ELF ObjectFile/PECOFF \ @@ -30,33 +30,33 @@ DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 \ InstrumentationRuntime/AddressSanitizer ifeq ($(HOST_OS),Darwin) -DIRS += Process/MacOSX-Kernel -DIRS += DynamicLoader/MacOSX-DYLD DynamicLoader/Darwin-Kernel -DIRS += ObjectContainer/Universal-Mach-O ObjectFile/Mach-O -DIRS += SymbolVendor/MacOSX -#DIRS += Process/MacOSX-User -DIRS += Process/mach-core -DIRS += SystemRuntime/MacOSX -DIRS += Process/elf-core -DIRS += JITLoader/GDB +PARALLEL_DIRS += Process/MacOSX-Kernel +PARALLEL_DIRS += DynamicLoader/MacOSX-DYLD DynamicLoader/Darwin-Kernel +PARALLEL_DIRS += ObjectContainer/Universal-Mach-O ObjectFile/Mach-O +PARALLEL_DIRS += SymbolVendor/MacOSX +#PARALLEL_DIRS += Process/MacOSX-User +PARALLEL_DIRS += Process/mach-core +PARALLEL_DIRS += SystemRuntime/MacOSX +PARALLEL_DIRS += Process/elf-core +PARALLEL_DIRS += JITLoader/GDB endif ifeq ($(HOST_OS),Linux) -DIRS += DynamicLoader/MacOSX-DYLD -DIRS += Process/Linux Process/POSIX -DIRS += Process/elf-core -DIRS += JITLoader/GDB +PARALLEL_DIRS += DynamicLoader/MacOSX-DYLD +PARALLEL_DIRS += Process/Linux Process/POSIX +PARALLEL_DIRS += Process/elf-core +PARALLEL_DIRS += JITLoader/GDB endif ifeq ($(HOST_OS),MingW) -DIRS += Process/elf-core -DIRS += JITLoader/GDB +PARALLEL_DIRS += Process/elf-core +PARALLEL_DIRS += JITLoader/GDB endif ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD)) -DIRS += Process/FreeBSD Process/POSIX -DIRS += Process/elf-core -DIRS += JITLoader/GDB +PARALLEL_DIRS += Process/FreeBSD Process/POSIX +PARALLEL_DIRS += Process/elf-core +PARALLEL_DIRS += JITLoader/GDB endif include $(LLDB_LEVEL)/Makefile diff --git a/lldb/source/Plugins/Platform/Makefile b/lldb/source/Plugins/Platform/Makefile index 6240743a1ab..1740a287dd6 100644 --- a/lldb/source/Plugins/Platform/Makefile +++ b/lldb/source/Plugins/Platform/Makefile @@ -11,7 +11,7 @@ LLDB_LEVEL := ../../.. include $(LLDB_LEVEL)/../../Makefile.config -DIRS := gdb-server MacOSX Linux FreeBSD POSIX Windows Kalimba +PARALLEL_DIRS := gdb-server MacOSX Linux FreeBSD POSIX Windows Kalimba # ifeq ($(HOST_OS),Darwin) # DIRS += MacOSX |

