Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Side by Side Diff: tools/bugpoint/CMakeLists.txt

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/Makefile ('k') | tools/bugpoint/LLVMBuild.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
13 MinSFITransforms
14 NaClAnalysis
15 NaClBitReader
16 NaClTransforms
17 # @LOCALMOD-END
12 ObjCARCOpts 18 ObjCARCOpts
13 ScalarOpts 19 ScalarOpts
14 Support 20 Support
15 Target 21 Target
16 TransformUtils 22 TransformUtils
17 Vectorize 23 Vectorize
18 ) 24 )
19 25
20 # Support plugins. 26 # Support plugins.
21 set(LLVM_NO_DEAD_STRIP 1) 27 set(LLVM_NO_DEAD_STRIP 1)
(...skipping 12 matching lines...) Expand all
34 set_target_properties(bugpoint PROPERTIES ENABLE_EXPORTS 1) 40 set_target_properties(bugpoint PROPERTIES ENABLE_EXPORTS 1)
35 41
36 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) 42 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)
37 target_link_libraries(bugpoint Polly) 43 target_link_libraries(bugpoint Polly)
38 if(POLLY_LINK_LIBS) 44 if(POLLY_LINK_LIBS)
39 foreach(lib ${POLLY_LINK_LIBS}) 45 foreach(lib ${POLLY_LINK_LIBS})
40 target_link_libraries(bugpoint ${lib}) 46 target_link_libraries(bugpoint ${lib})
41 endforeach(lib) 47 endforeach(lib)
42 endif(POLLY_LINK_LIBS) 48 endif(POLLY_LINK_LIBS)
43 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) 49 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)
OLDNEW
« no previous file with comments | « tools/Makefile ('k') | tools/bugpoint/LLVMBuild.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698