let us build with clang
Signed-off-by: Jeff Epler <jepler@unpythonic.net>
This commit is contained in:
parent
b70d655489
commit
18d444ca66
1 changed files with 2 additions and 0 deletions
2
Makefile
2
Makefile
|
|
@ -8,3 +8,5 @@ dashing: main.cc dashing.cc dashing.hh parse_numbers.hh
|
||||||
g++ -W -Wall -O2 -g -std=c++11 $(filter %.cc, $^) -o $@ -lboost_random
|
g++ -W -Wall -O2 -g -std=c++11 $(filter %.cc, $^) -o $@ -lboost_random
|
||||||
dashing-noopt: main.cc dashing.cc dashing.hh parse_numbers.hh
|
dashing-noopt: main.cc dashing.cc dashing.hh parse_numbers.hh
|
||||||
g++ -W -Wall -O0 -g -std=c++11 $(filter %.cc, $^) -o $@ -lboost_random
|
g++ -W -Wall -O0 -g -std=c++11 $(filter %.cc, $^) -o $@ -lboost_random
|
||||||
|
dashing-clang: main.cc dashing.cc dashing.hh parse_numbers.hh
|
||||||
|
clang++ -W -Wall -O2 -g -std=c++11 $(filter %.cc, $^) -o $@ -lboost_random
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue