make: release_debug_sym for better perfing

This commit is contained in:
Richard Thier 2021-12-13 04:20:05 +01:00
parent 11ceee29a1
commit 675b90c0d8
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
debug: test.cpp magyarsort.h
g++ test.cpp -g -std=c++14 -o test.out
release_debug_sym: test.cpp magyarsort.h
g++ test.cpp -g -std=c++14 -O2 -o test.out
release: test.cpp magyarsort.h
g++ test.cpp -std=c++14 -O2 -o test.out

View File

@ -7,7 +7,7 @@
// Number of input elements to generate - unused when CREEL is defined!
//#define SORT_WIDTH 200000000
#define SORT_WIDTH 4000000
#define SORT_WIDTH 400000
// Uncomment this to use nibbles as digits and not bytes - CREEL defines this anyways
//#define MAGYAR_SORT_NIBBLE