From c08061b66b3d6f33c57dc2cdd4cd23917109aeab Mon Sep 17 00:00:00 2001 From: Trevor Keller Date: Mon, 17 Sep 2018 13:13:39 -0400 Subject: [PATCH] clear warnings, proper links in parallel --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f8a4762..a113e29 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ includes = -I$(MMSP_PATH)/include # compilers/flags compiler = g++ pcompiler = mpic++ -flags = -O3 -Wall +flags = -O3 -Wall -std=c++11 # the program @@ -18,7 +18,7 @@ gKKS: KKS.cpp $(compiler) $(flags) $(includes) $< -o $@ -lz -lgsl -lgslcblas parallel: KKS.cpp - $(pcompiler) $(flags) $(includes) -include mpi.h $< -o $@ -lz + $(pcompiler) $(flags) $(includes) -include mpi.h $< -o $@ -lz -lgsl -lgslcblas # utilities