about summary refs log tree commit diff stats
path: root/test_layers
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-28 23:52:07 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-28 23:52:07 -0700
commitc5d5431990361c921dc850d078d85a797d219e06 (patch)
treea1a61461c1dd8b8ed7751dcec27dd075af44f04e /test_layers
parent4e39c6bb082d6f7c0aaab9767b9b279490bce290 (diff)
downloadmu-c5d5431990361c921dc850d078d85a797d219e06.tar.gz
3275
Follow convention more closely by using CXXFLAGS for C++ files.
Diffstat (limited to 'test_layers')
-rwxr-xr-xtest_layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_layers b/test_layers
index 1910a5d7..8b550ebd 100755
--- a/test_layers
+++ b/test_layers
@@ -32,7 +32,7 @@ do
 done
 
 # Layers for Mu apps without Valgrind
-CXX=clang++ CFLAGS="-O3 -fsanitize=undefined -Wno-tautological-constant-out-of-range-compare" make
+CXX=clang++ CXXFLAGS="-O3 -fsanitize=undefined -Wno-tautological-constant-out-of-range-compare" make
 
 if [[ ! $1 || $1 == chessboard ]]
 then
f='/akkartik/mu/blame/cpp/039wait.cc?h=main&id=08004ec84b755291e5b177748a659b7200c5b5a6'>^
bc643692 ^
c76b49e7 ^









ac0e9db5 ^
827898fc ^
c76b49e7 ^
3a622511 ^
c76b49e7 ^





363be37f ^
c76b49e7 ^

0487a30e ^
c76b49e7 ^

827898fc ^
35064671 ^
c76b49e7 ^





ac0e9db5 ^
05d17773 ^
9d670bb5 ^
827898fc ^
35064671 ^
05d17773 ^
3a622511 ^
c76b49e7 ^

363685b8 ^
1ea1bd9c ^
363685b8 ^


bc643692 ^
5497090a ^

363685b8 ^
5497090a ^
363685b8 ^

bc643692 ^
363685b8 ^
6e698858 ^




363685b8 ^




ac0e9db5 ^
363685b8 ^





363be37f ^
363685b8 ^

e4630643 ^











363685b8 ^
6e698858 ^
35064671 ^
363685b8 ^



9d670bb5 ^


ac0e9db5 ^
05d17773 ^

ac0e9db5 ^
e4630643 ^
ac0e9db5 ^
6e698858 ^
35064671 ^
05d17773 ^

363685b8 ^


134dad7c ^



363be37f ^
134dad7c ^

ac0e9db5 ^
134dad7c ^

134dad7c ^






ac0e9db5 ^

134dad7c ^







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154