Skip to content

Commit 199d5e5

Browse files
authored
Merge pull request #143 from mattip/untangle
update to latest HEAD, consistently use LIBNAME
2 parents 82976f0 + bfe6ff6 commit 199d5e5

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = "scipy-openblas64"
11-
version = "0.3.26.238.0"
11+
version = "0.3.26.288.0"
1212
requires-python = ">=3.7"
1313
description = "Provides OpenBLAS for python packaging"
1414
readme = "README.md"

tools/build_gfortran.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ OBP=$(cygpath $OPENBLAS_ROOT\\$BUILD_BITS)
1111

1212
static_libname=$(find $OBP/lib -maxdepth 1 -type f -name '*.a' \! -name '*.dll.a' | tail -1)
1313
dynamic_libname=$(find $OBP/lib -maxdepth 1 -type f -name '*.dll.a' | tail -1)
14-
dll_name=$(echo $dynamic_libname | sed 's#/lib/#/bin/#' | sed 's/.a$//')
14+
dll_name=$(find $OBP/bin -maxdepth 1 -type f -name '*.dll' | tail -1)
1515

1616
grep dpotrf $OBP/include/*
1717
nm $static_libname | grep dpotrf

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)