aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-01-16 19:40:28 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:11 +0100
commitfa39e58d91ab5a2acee0d933b7a7565cbbc4bfe5 (patch)
treee453e7aa47fe5b7c8e416f9c904652e67a654d0e /src
parent6f2c69fde931686c7400595ae162bccdd899de51 (diff)
Add an option to fudge CBLAS if necessary
Diffstat (limited to 'src')
-rw-r--r--src/cell.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cell.c b/src/cell.c
index 826b003e..f155b5e0 100644
--- a/src/cell.c
+++ b/src/cell.c
@@ -916,3 +916,12 @@ UnitCell *load_cell_from_pdb(const char *filename)
return cell;
}
+
+
+#ifdef GSL_FUDGE
+/* Force the linker to bring in CBLAS to make GSL happy */
+void fudge_gslcblas()
+{
+ STATUS("%p\n", cblas_sgemm);
+}
+#endif