OLD | NEW |
1 set(LLVM_LINK_COMPONENTS | 1 set(LLVM_LINK_COMPONENTS |
2 Analysis | 2 Analysis |
3 BitWriter | 3 BitWriter |
4 CodeGen | 4 CodeGen |
5 Core | 5 Core |
6 IPA | 6 IPA |
7 IPO | 7 IPO |
8 IRReader | 8 IRReader |
9 InstCombine | 9 InstCombine |
10 Instrumentation | 10 Instrumentation |
11 Linker | 11 Linker |
12 # @LOCALMOD-BEGIN | 12 # @LOCALMOD-BEGIN |
13 MinSFITransforms | 13 MinSFITransforms |
14 NaClAnalysis | 14 NaClAnalysis |
15 NaClBitReader | 15 NaClBitReader |
16 NaClTransforms | 16 NaClTransforms |
17 JSBackend | |
18 # @LOCALMOD-END | 17 # @LOCALMOD-END |
19 ObjCARCOpts | 18 ObjCARCOpts |
20 ScalarOpts | 19 ScalarOpts |
21 Support | 20 Support |
22 Target | 21 Target |
23 TransformUtils | 22 TransformUtils |
24 Vectorize | 23 Vectorize |
25 ) | 24 ) |
26 | 25 |
27 # Support plugins. | 26 # Support plugins. |
(...skipping 13 matching lines...) Expand all Loading... |
41 export_executable_symbols(bugpoint) | 40 export_executable_symbols(bugpoint) |
42 | 41 |
43 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) | 42 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) |
44 target_link_libraries(bugpoint Polly) | 43 target_link_libraries(bugpoint Polly) |
45 if(POLLY_LINK_LIBS) | 44 if(POLLY_LINK_LIBS) |
46 foreach(lib ${POLLY_LINK_LIBS}) | 45 foreach(lib ${POLLY_LINK_LIBS}) |
47 target_link_libraries(bugpoint ${lib}) | 46 target_link_libraries(bugpoint ${lib}) |
48 endforeach(lib) | 47 endforeach(lib) |
49 endif(POLLY_LINK_LIBS) | 48 endif(POLLY_LINK_LIBS) |
50 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) | 49 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) |
OLD | NEW |