diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-01-16 19:40:28 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:11 +0100 |
commit | fa39e58d91ab5a2acee0d933b7a7565cbbc4bfe5 (patch) | |
tree | e453e7aa47fe5b7c8e416f9c904652e67a654d0e /src | |
parent | 6f2c69fde931686c7400595ae162bccdd899de51 (diff) |
Add an option to fudge CBLAS if necessary
Diffstat (limited to 'src')
-rw-r--r-- | src/cell.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |