summaryrefslogtreecommitdiff
path: root/SpMV
diff options
context:
space:
mode:
Diffstat (limited to 'SpMV')
-rw-r--r--SpMV/baselines/cpu/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/SpMV/baselines/cpu/Makefile b/SpMV/baselines/cpu/Makefile
index 64b20db..5b2367b 100644
--- a/SpMV/baselines/cpu/Makefile
+++ b/SpMV/baselines/cpu/Makefile
@@ -1,7 +1,7 @@
all: spmv
spmv: app.c
- gcc -O2 -o spmv -fopenmp app.c
+ gcc -Wall -Wextra -pedantic -march=native -O2 -o spmv -fopenmp app.c
spmv_O0: app.c
gcc -o spmv_O0 -fopenmp app.c