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

Side by Side Diff: Makefile

Issue 659513005: Allow conditional lit tests in Subzero, based on build flags. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add -Wno-error=unused-parameter Created 6 years, 1 month 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.standalone » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 ifndef SUBZERO_LEVEL 2 ifndef SUBZERO_LEVEL
3 # Top-level, not included from a subdir 3 # Top-level, not included from a subdir
4 SUBZERO_LEVEL := . 4 SUBZERO_LEVEL := .
5 DIRS := src 5 DIRS := src
6 PARALLEL_DIRS := 6 PARALLEL_DIRS :=
7 endif 7 endif
8 8
9 # Set LLVM source root level. 9 # Set LLVM source root level.
10 LEVEL := $(SUBZERO_LEVEL)/../.. 10 LEVEL := $(SUBZERO_LEVEL)/../..
11 11
12 # Include LLVM common makefile. 12 # Include LLVM common makefile.
13 include $(LEVEL)/Makefile.common 13 include $(LEVEL)/Makefile.common
14
15 CXX.Flags += -std=c++11 -Wextra -Werror -Wno-error=unused-parameter
16
17 CPP.Defines += -DALLOW_TEXT_ASM=1 -DALLOW_DUMP=1 -DALLOW_LLVM_CL=1 \
18 -DALLOW_LLVM_IR=1 -DALLOW_LLVM_IR_AS_INPUT=1
19
OLDNEW
« no previous file with comments | « no previous file | Makefile.standalone » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698