From 5c441034717a542b5ff38445953d07b0b2e43834 Mon Sep 17 00:00:00 2001 From: Cory Date: Tue, 24 Oct 2023 15:56:07 +0200 Subject: [PATCH] Remove -lblas -llapack --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 47ec673..22514b4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,7 +8,8 @@ CLASSOBJS=$(CLASSSRCS:.cpp=.o) INCLUDE=../include -CFLAGS=-Wall -larmadillo -lblas -llapack -std=c++11 -O3 -fomit-frame-pointer +CFLAGS=-Wall -larmadillo -std=c++11 -O3 -fomit-frame-pointer +#CFLAGS=-Wall -larmadillo -lblas -llapack -std=c++11 -O3 -fomit-frame-pointer OPENMP=-fopenmp # Add a debug flag when compiling (For the DEBUG macro in utils.hpp)