From 977f02c514ea1c2555457d75a947f8757bc4a29a Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 16 Jul 2014 10:42:13 +0200 Subject: [PATCH] OpenBLAS: bugfix in build script, re-pack tar-ball --- scripts/OpenBLAS.build | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/OpenBLAS.build b/scripts/OpenBLAS.build index 531e270..cfc147b 100755 --- a/scripts/OpenBLAS.build +++ b/scripts/OpenBLAS.build @@ -15,11 +15,15 @@ EOF function em.build() { cd "${EM_SRCDIR}" - make TARGET=CORE2 BINARY=64 USE_THREAD=0 NO_SHARED=1 + make TARGET=CORE2 BINARY=64 } function em.install() { make PREFIX="${PREFIX}" install + # We have to build shared libs and remove them here. + # Building with NOSHARED gives an error during install - + # due to a bug in the Makefile(s). + rm -f "${PREFIX}/lib/"*.so } function em.install_doc() {