From 5bcc7bcb0b7b7553963674c920d509e337a0894e Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 10 Jan 2021 18:55:14 +0100 Subject: [PATCH] add include path for cblas.h --- cpp_thread_test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp_thread_test/Makefile b/cpp_thread_test/Makefile index 33a3956f0..1adece0b1 100644 --- a/cpp_thread_test/Makefile +++ b/cpp_thread_test/Makefile @@ -11,7 +11,7 @@ dgemm_tester : dgemv_tester ./dgemm_tester test_gemm_omp : - $(CXX) $(COMMON_OPT) -Wall -Wextra -Wshadow -fopenmp test_gemm_omp.cc ../libopenblas.a -lpthread -o test_gemm_omp + $(CXX) $(COMMON_OPT) -Wall -Wextra -Wshadow -fopenmp -I.. test_gemm_omp.cc ../libopenblas.a -lpthread -o test_gemm_omp ./test_gemm_omp clean ::