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

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

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: 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
OLDNEW
(Empty)
1 set(LLVM_LINK_COMPONENTS
2 ${LLVM_TARGETS_TO_BUILD}
3 BitReader
4 CodeGen
5 Core
6 IRReader
7 MC
8 NaClAnalysis
9 NaClBitReader
10 NaClTransforms
11 ScalarOpts
12 SelectionDAG
13 Support
14 Target)
15
16 add_llvm_tool(pnacl-llc
17 srpc_main.cpp
18 SRPCStreamer.cpp
19 pnacl-llc.cpp
20 ThreadedStreamingCache.cpp
21 )
22
23 if(LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD)
24 target_link_libraries(pnacl-llc pthread)
25 endif()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698