Skip to content

Commit

Permalink
Merge pull request thunlp#17 from HoboChen/master
Browse files Browse the repository at this point in the history
set default to c++11, avoid compile failure
  • Loading branch information
MaJunhua authored May 4, 2017
2 parents eeed5a4 + 74927e4 commit cca2431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include_dir=include
src_dir=src
bin_dir=.
test_dir=test
thulac=g++ -O3 -march=native -I $(include_dir)
thulac=g++ -std=c++11 -O3 -march=native -I $(include_dir)

# all: $(bin_dir)/thulac_test $(bin_dir)/train_c $(bin_dir)/thulac
all: $(bin_dir)/thulac $(bin_dir)/train_c $(bin_dir)/thulac_test
Expand Down

0 comments on commit cca2431

Please sign in to comment.