Commit 74deeb8 1 parent 6c83992 commit 74deeb8 Copy full SHA for 74deeb8
File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 8
8
# #===----------------------------------------------------------------------===##
9
9
LEVEL = ..
10
10
11
- PARALLEL_DIRS = VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
12
- Target ExecutionEngine Debugger Linker CompilerDriver MC
11
+ include $(LEVEL ) /Makefile.config
12
+
13
+ PARALLEL_DIRS := VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
14
+ Target ExecutionEngine Debugger Linker MC
15
+
16
+ # Only build the CompilerDriver when PIC is enabled.
17
+
18
+ ifeq ($(ENABLE_PIC ) ,1)
19
+ PARALLEL_DIRS += CompilerDriver
20
+ endif
13
21
14
22
include $(LEVEL ) /Makefile.common
15
23
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis \
20
20
llc llvm-ranlib llvm-ar llvm-nm \
21
21
llvm-ld llvm-prof llvm-link \
22
22
lli gccas gccld llvm-extract llvm-db \
23
- bugpoint llvm-bcanalyzer llvm-stub llvmc \
23
+ bugpoint llvm-bcanalyzer llvm-stub \
24
24
llvm-mc
25
25
26
26
# Let users override the set of tools to build from the command line.
32
32
include $(LEVEL ) /Makefile.config
33
33
34
34
ifeq ($(ENABLE_PIC ) ,1)
35
- DIRS += lto
35
+ DIRS += lto llvmc
36
36
ifdef BINUTILS_INCDIR
37
37
DIRS += gold
38
38
endif
You can’t perform that action at this time.
0 commit comments