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

Side by Side Diff: CMakeLists.txt

Issue 1941593002: Subzero: Suppress a warning as a result of an updated clang. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Also fix the LLVM-side build Created 4 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
« no previous file with comments | « no previous file | Makefile » ('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 ${LLVM_TARGETS_TO_BUILD} 2 ${LLVM_TARGETS_TO_BUILD}
3 Core 3 Core
4 IRReader 4 IRReader
5 NaClBitReader 5 NaClBitReader
6 NaClBitTestUtils 6 NaClBitTestUtils
7 Support 7 Support
8 ) 8 )
9 9
10 file(GLOB pnacl_sz_SRCS "src/*.cpp") 10 file(GLOB pnacl_sz_SRCS "src/*.cpp")
(...skipping 14 matching lines...) Expand all
25 add_definitions( 25 add_definitions(
26 -DALLOW_DUMP=1 26 -DALLOW_DUMP=1
27 -DALLOW_LLVM_CL=1 27 -DALLOW_LLVM_CL=1
28 -DALLOW_LLVM_IR=1 28 -DALLOW_LLVM_IR=1
29 -DALLOW_LLVM_IR_AS_INPUT=1 29 -DALLOW_LLVM_IR_AS_INPUT=1
30 -DALLOW_TIMERS=1 30 -DALLOW_TIMERS=1
31 -DALLOW_MINIMAL_BUILD=0 31 -DALLOW_MINIMAL_BUILD=0
32 -DALLOW_WASM=0 32 -DALLOW_WASM=0
33 -DPNACL_BROWSER_TRANSLATOR=0 33 -DPNACL_BROWSER_TRANSLATOR=0
34 ) 34 )
35 add_compile_options(-Wno-undefined-var-template)
35 endif() 36 endif()
36 37
37 target_link_libraries(pnacl-sz pthread) 38 target_link_libraries(pnacl-sz pthread)
OLDNEW
« no previous file with comments | « no previous file | Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698