diff options
author | Pjotr Prins | 2018-01-26 10:19:47 +0000 |
---|---|---|
committer | Pjotr Prins | 2018-01-26 10:19:47 +0000 |
commit | 3293f7e6456574272418b16f4a5ba22f60f8d67a (patch) | |
tree | 6e877a0579bc28d33c0de11e37c914186d735fe7 /src/gemma.cpp | |
parent | 847185bbce9bcf1595977fb32d7f7e87ab40b4a8 (diff) | |
download | pangemma-3293f7e6456574272418b16f4a5ba22f60f8d67a.tar.gz |
Change OpenBLAS warning
Diffstat (limited to 'src/gemma.cpp')
-rw-r--r-- | src/gemma.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gemma.cpp b/src/gemma.cpp index edd79d7..97e947a 100644 --- a/src/gemma.cpp +++ b/src/gemma.cpp @@ -26,7 +26,6 @@ #include <string> #include <sys/stat.h> #ifdef OPENBLAS -#pragma message "Compiling with OPENBLAS" extern "C" { // these functions are defined in cblas.h - but if we include that we // conflicts with other BLAS includes @@ -35,6 +34,8 @@ extern "C" { char* openblas_get_config(void); char* openblas_get_corename(void); } +#else +#pragma message "Not compiling with OPENBLAS" #endif #include "gsl/gsl_blas.h" |