Skip to content

Commit 43ef883

Browse files
committed
update to latest HEAD, consistently use LIBNAME
1 parent 82976f0 commit 43ef883

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/posix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
INTERFACE64: '1'
4848
env:
4949
REPO_DIR: OpenBLAS
50-
OPENBLAS_COMMIT: "5403900539"
50+
OPENBLAS_COMMIT: "5fbe25954b"
5151
NIGHTLY: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
5252
MACOSX_DEPLOYMENT_TARGET: 10.9
5353
MB_PYTHON_VERSION: ${{ matrix.python-version }}

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ main ]
88

99
env:
10-
OPENBLAS_COMMIT: "5403900539"
10+
OPENBLAS_COMMIT: "5fbe25954b"
1111
OPENBLAS_ROOT: "c:\\opt"
1212
# Preserve working directory for calls into bash
1313
# Without this, invoking bash will cd to the home directory

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ env:
22
global:
33
# The archive that gets built has name from ``git describe`` on this
44
# commit.
5-
- OPENBLAS_COMMIT="5403900539"
5+
- OPENBLAS_COMMIT="5fbe25954b"
66
- REPO_DIR=OpenBLAS
77

88
language: python

OpenBLAS

tools/build_openblas.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ fflags="$fextra $cflags -frecursive -ffpe-summary=invalid,zero"
7777
# Set suffixed-ILP64 flags
7878
if [ "$if_bits" == "64" ]; then
7979
SYMBOLSUFFIX="64_"
80-
interface_flags="INTERFACE64=1 SYMBOLSUFFIX=${SYMBOLSUFFIX}"
80+
interface_flags="INTERFACE64=1 SYMBOLSUFFIX=64_ LIBNAMESUFFIX=64_"
8181
# We override FCOMMON_OPT, so we need to set default integer manually
8282
fflags="$fflags -fdefault-integer-8"
8383
else
8484
interface_flags=""
8585
fi
8686
# On windows, the LIBNAMEPREFIX is not needed, SYMBOLPREFIX is added to the lib
8787
# name LIBPREFIX in Makefile.system.
88-
interface_flags="$interface_flags SYMBOLPREFIX=scipy_ FIXED_LIBNAME=1"
88+
interface_flags="$interface_flags SYMBOLPREFIX=scipy_ LIBNAMEPREFIX=scipy_ FIXED_LIBNAME=1"
8989

9090
# Build name for output library from gcc version and OpenBLAS commit.
9191
GCC_TAG="gcc_$(gcc -dumpversion | tr .- _)"

0 commit comments

Comments
 (0)