diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-15 03:48:26 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-07-20 08:09:06 +0700 |
commit | 7694c9d403f9404610f63deb7e18c4252175f7b3 (patch) | |
tree | 70cfb63e05d3bd389e68abcc61ce55c27d9bf45f /libraries/OpenBLAS | |
parent | 4a869f5aee911137a7a28212a1c9a8229c941597 (diff) |
libraries/OpenBLAS: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/OpenBLAS')
-rw-r--r-- | libraries/OpenBLAS/OpenBLAS.SlackBuild | 2 | ||||
-rw-r--r-- | libraries/OpenBLAS/README | 12 |
2 files changed, 8 insertions, 6 deletions
diff --git a/libraries/OpenBLAS/OpenBLAS.SlackBuild b/libraries/OpenBLAS/OpenBLAS.SlackBuild index 994162c534..6ca93b9f6c 100644 --- a/libraries/OpenBLAS/OpenBLAS.SlackBuild +++ b/libraries/OpenBLAS/OpenBLAS.SlackBuild @@ -22,7 +22,7 @@ if [ -z "$ARCH" ]; then fi EXTRAPARMS="" TARGET=${TARGET:-"GENERIC"} -if [ "x`uname -p|grep QEMU|wc -l`" = "x1" ]; then +if [ "x$( uname -p|grep QEMU|wc -l )" = "x1" ]; then #we are running in a vm with a QEMU cpu. OpenBLAS does not like this EXTRAPARMS="DYNAMIC_ARCH=1" if [ "x$TARGET" = "x" ]; then diff --git a/libraries/OpenBLAS/README b/libraries/OpenBLAS/README index 772a8d7fd6..8ba19cecfa 100644 --- a/libraries/OpenBLAS/README +++ b/libraries/OpenBLAS/README @@ -1,8 +1,10 @@ OpenBLAS is an optimized BLAS library -Added symbolic link to install a generic blas library that can be used by Octave and R. -OpenBLAS has cpu specific targetted assembly code for speed optimisation. -In most cases, the installation will detect the correct CPU architecture -If you want to specify the architecture you can define the EXTRAPARAMS -environmental variable with EXTRAPARAMS="TARGET=ZEN" (for AMD Ryzen CPUs) +Added symbolic link to install a generic blas library that can be used +by Octave and R. +OpenBLAS has cpu specific targetted assembly code for speed +optimisation. In most cases, the installation will detect the +correct CPU architecture If you want to specify the architecture +you can define the EXTRAPARAMS environmental variable with +EXTRAPARAMS="TARGET=ZEN" (for AMD Ryzen CPUs) |