diff options
author | tlatorre <tlatorre@uchicago.edu> | 2018-08-31 10:06:02 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2018-08-31 10:06:02 -0500 |
commit | f213df199092781b50115db9fae5afbbbd9b2551 (patch) | |
tree | 8f58b146a767bad8938f1e7e144b5467b79fdcc6 /src/Makefile | |
parent | 37510bc23ab8ba5266998c15fb48c869ef7ca796 (diff) | |
download | sddm-f213df199092781b50115db9fae5afbbbd9b2551.tar.gz sddm-f213df199092781b50115db9fae5afbbbd9b2551.tar.bz2 sddm-f213df199092781b50115db9fae5afbbbd9b2551.zip |
compile with -O2 to speed things up
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 2e9169a..b7b295c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,4 @@ -CFLAGS=-O0 -Wall -g -DSWAP_BYTES +CFLAGS=-O2 -Wall -g -DSWAP_BYTES LDLIBS=-lm -lgsl -lgslcblas -lnlopt_cxx -lstdc++ all: test test-vector test-likelihood fit test-charge test-path |