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

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

Issue 1692803002: Remove Emscripten support (Closed) Base URL: https://chromium.googlesource.com/a/native_client/pnacl-llvm.git@master
Patch Set: Created 4 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
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 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
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)
OLDNEW
« no previous file with comments | « test/Transforms/NaCl/resolve-pnacl-intrinsics-lock-free.ll ('k') | tools/bugpoint/LLVMBuild.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698