Skip to content

Commit 54eff49

Browse files
authored
Merge pull request #151 from mattip/v0.3.27.1
V0.3.27.1
2 parents ac51593 + f1b53b1 commit 54eff49

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

patches/0001-fix-soname.patch

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
From 205e0810878af6c04bba7946379b9fbf68f64fd4 Mon Sep 17 00:00:00 2001
2+
From: Matti Picus <[email protected]>
3+
Date: Thu, 11 Apr 2024 08:35:01 +1000
4+
Subject: [PATCH] fix soname
5+
6+
---
7+
exports/Makefile | 4 ++--
8+
1 file changed, 2 insertions(+), 2 deletions(-)
9+
10+
diff --git a/exports/Makefile b/exports/Makefile
11+
index 4d929c8d3..f36382e2c 100644
12+
--- a/exports/Makefile
13+
+++ b/exports/Makefile
14+
@@ -178,7 +178,7 @@ FEXTRALIB += -lm
15+
EXTRALIB += -lm
16+
else
17+
ifeq ($(FIXED_LIBNAME),1)
18+
-INTERNALNAME = $(LIBPREFIX)$(LIBNAMESUFFIX).so
19+
+INTERNALNAME = $(LIBPREFIX).so
20+
else
21+
INTERNALNAME = $(LIBPREFIX).so.$(MAJOR_VERSION)
22+
endif
23+
@@ -191,7 +191,7 @@ else
24+
$(OBJCOPY) --redefine-syms objcopy.def ../$(LIBNAME) ../$(LIBNAME).renamed
25+
../$(LIBSONAME) : ../$(LIBNAME).renamed linktest.c
26+
endif
27+
-
28+
+ echo INTERNALNAME $(INTERNALNAME)
29+
ifeq ($(F_COMPILER), INTEL)
30+
$(FC) $(FFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
31+
-Wl,--whole-archive $< -Wl,--no-whole-archive \
32+
--
33+
2.39.3 (Apple Git-146)
34+

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.27.0.0"
11+
version = "0.3.27.0.1"
1212
requires-python = ">=3.7"
1313
description = "Provides OpenBLAS for python packaging"
1414
readme = "README.md"

0 commit comments

Comments
 (0)