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

Side by Side Diff: tools/pnacl-llc/CMakeLists.txt

Issue 1151093004: Changes from 3.7 merge to files not in upstream (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Created 5 years, 7 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 ${LLVM_TARGETS_TO_BUILD} 2 ${LLVM_TARGETS_TO_BUILD}
3 Analysis
3 BitReader 4 BitReader
4 CodeGen 5 CodeGen
5 Core 6 Core
6 IRReader 7 IRReader
7 MC 8 MC
8 NaClAnalysis 9 NaClAnalysis
9 NaClBitReader 10 NaClBitReader
10 NaClTransforms 11 NaClTransforms
11 ScalarOpts 12 ScalarOpts
12 SelectionDAG 13 SelectionDAG
13 Support 14 Support
14 Target) 15 Target)
15 16
16 add_llvm_tool(pnacl-llc 17 add_llvm_tool(pnacl-llc
17 srpc_main.cpp 18 srpc_main.cpp
18 SRPCStreamer.cpp 19 SRPCStreamer.cpp
19 pnacl-llc.cpp 20 pnacl-llc.cpp
20 ThreadedStreamingCache.cpp 21 ThreadedStreamingCache.cpp
21 ) 22 )
22 23
23 if(LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD) 24 if(LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD)
24 target_link_libraries(pnacl-llc pthread) 25 target_link_libraries(pnacl-llc pthread)
25 endif() 26 endif()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698