Skip to content

Commit 09eb635

Browse files
Backport #42546 to 1.6 (#42564)
* [OpenBLAS/lapack] Fix the `LinearAlgebra/tridiag` segfaults by adding the relevant patch and bumping the OpenBLAS JLLs (cherry picked from commit 6f535fa) * bump OpenBLAS_jll Co-authored-by: Dilum Aluthge <[email protected]>
1 parent c2c4a36 commit 09eb635

File tree

4 files changed

+194
-94
lines changed

4 files changed

+194
-94
lines changed

deps/blas.mk

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,12 @@ $(BUILDDIR)/$(OPENBLAS_SRC_DIR)/openblas-ofast-power.patch-applied: $(BUILDDIR)/
103103
patch -p1 -f < $(SRCDIR)/patches/openblas-ofast-power.patch
104104
echo 1 > $@
105105

106-
$(BUILDDIR)/$(OPENBLAS_SRC_DIR)/build-configured: $(BUILDDIR)/$(OPENBLAS_SRC_DIR)/openblas-ofast-power.patch-applied
106+
$(BUILDDIR)/$(OPENBLAS_SRC_DIR)/openblas-julia42415-lapack625-openblas3392.patch-applied: $(BUILDDIR)/$(OPENBLAS_SRC_DIR)/openblas-ofast-power.patch-applied
107+
cd $(BUILDDIR)/$(OPENBLAS_SRC_DIR) && \
108+
patch -p1 -f < $(SRCDIR)/patches/openblas-julia42415-lapack625-openblas3392.patch
109+
echo 1 > $@
110+
111+
$(BUILDDIR)/$(OPENBLAS_SRC_DIR)/build-configured: $(BUILDDIR)/$(OPENBLAS_SRC_DIR)/openblas-julia42415-lapack625-openblas3392.patch-applied
107112
echo 1 > $@
108113

109114
$(BUILDDIR)/$(OPENBLAS_SRC_DIR)/build-compiled: $(BUILDDIR)/$(OPENBLAS_SRC_DIR)/build-configured

0 commit comments

Comments
 (0)