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

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

Issue 749363002: Fix cmake build: MinSFI was incorrect (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Created 6 years 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 | « no previous file | no next file » | 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 ${LLVM_TARGETS_TO_BUILD} 2 ${LLVM_TARGETS_TO_BUILD}
3 Analysis 3 Analysis
4 BitWriter 4 BitWriter
5 CodeGen 5 CodeGen
6 Core 6 Core
7 IPA 7 IPA
8 IPO 8 IPO
9 IRReader 9 IRReader
10 naclbitwriter 10 naclbitwriter
11 naclbitreader 11 naclbitreader
12 minsfitransforms
12 InstCombine 13 InstCombine
13 Instrumentation 14 Instrumentation
14 MC 15 MC
15 ObjCARCOpts 16 ObjCARCOpts
16 ScalarOpts 17 ScalarOpts
17 Support 18 Support
18 Target 19 Target
19 TransformUtils 20 TransformUtils
20 Vectorize 21 Vectorize
21 ) 22 )
(...skipping 14 matching lines...) Expand all
36 set_target_properties(opt PROPERTIES ENABLE_EXPORTS 1) 37 set_target_properties(opt PROPERTIES ENABLE_EXPORTS 1)
37 38
38 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) 39 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)
39 target_link_libraries(opt Polly) 40 target_link_libraries(opt Polly)
40 if(POLLY_LINK_LIBS) 41 if(POLLY_LINK_LIBS)
41 foreach(lib ${POLLY_LINK_LIBS}) 42 foreach(lib ${POLLY_LINK_LIBS})
42 target_link_libraries(opt ${lib}) 43 target_link_libraries(opt ${lib})
43 endforeach(lib) 44 endforeach(lib)
44 endif(POLLY_LINK_LIBS) 45 endif(POLLY_LINK_LIBS)
45 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) 46 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698