-
Notifications
You must be signed in to change notification settings - Fork 559
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libjulia_jll: add Julia 1.9, update 1.8 (#4461)
Co-authored-by: Mosè Giordano <mose@gnu.org> Co-authored-by: Mosè Giordano <mose@gnu.org>
- Loading branch information
Showing
5 changed files
with
74 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
include("common.jl") | ||
jllversion=v"1.7.1" | ||
jllversion=v"1.8.0" | ||
build_julia(ARGS, v"1.6.3"; jllversion) | ||
build_julia(ARGS, v"1.7.0"; jllversion) | ||
build_julia(ARGS, v"1.8.0-DEV"; jllversion) | ||
build_julia(ARGS, v"1.9.0-DEV"; jllversion) |
30 changes: 0 additions & 30 deletions
30
...bjulia/bundled/patches/1.8.0-DEV/0001-Don-t-set-HAVE_SSP-unconditionally-on-aarch64.patch
This file was deleted.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
L/libjulia/bundled/patches/1.8.0-DEV/debuginfo-32-bit-arm.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
From c9ac2eadfb2c80ddd2cff30c5eaec0f4e8695167 Mon Sep 17 00:00:00 2001 | ||
From: David Nadlinger <code@klickverbot.at> | ||
Date: Sat, 19 Feb 2022 20:31:41 +0000 | ||
Subject: [PATCH] debuginfo: Fix build on 32-bit ARM | ||
|
||
This slipped through in 955d4271, as we aren't building for | ||
32 bit ARM during CI right now. | ||
|
||
GitHub: Fixes #44254. | ||
--- | ||
src/debuginfo.cpp | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/debuginfo.cpp b/src/debuginfo.cpp | ||
index 42d67bd6f89c..53105feb81bf 100644 | ||
--- a/src/debuginfo.cpp | ||
+++ b/src/debuginfo.cpp | ||
@@ -227,7 +227,7 @@ class JITObjectRegistry | ||
continue; | ||
} | ||
} | ||
- uint64_t loadaddr = L.getSectionLoadAddress(section); | ||
+ uint64_t loadaddr = getLoadAddress(section.getName().get()); | ||
size_t seclen = section.getSize(); | ||
if (istext) { | ||
arm_text_addr = loadaddr; |
26 changes: 26 additions & 0 deletions
26
L/libjulia/bundled/patches/1.9.0-DEV/debuginfo-32-bit-arm.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
From c9ac2eadfb2c80ddd2cff30c5eaec0f4e8695167 Mon Sep 17 00:00:00 2001 | ||
From: David Nadlinger <code@klickverbot.at> | ||
Date: Sat, 19 Feb 2022 20:31:41 +0000 | ||
Subject: [PATCH] debuginfo: Fix build on 32-bit ARM | ||
|
||
This slipped through in 955d4271, as we aren't building for | ||
32 bit ARM during CI right now. | ||
|
||
GitHub: Fixes #44254. | ||
--- | ||
src/debuginfo.cpp | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/debuginfo.cpp b/src/debuginfo.cpp | ||
index 42d67bd6f89c..53105feb81bf 100644 | ||
--- a/src/debuginfo.cpp | ||
+++ b/src/debuginfo.cpp | ||
@@ -227,7 +227,7 @@ class JITObjectRegistry | ||
continue; | ||
} | ||
} | ||
- uint64_t loadaddr = L.getSectionLoadAddress(section); | ||
+ uint64_t loadaddr = getLoadAddress(section.getName().get()); | ||
size_t seclen = section.getSize(); | ||
if (istext) { | ||
arm_text_addr = loadaddr; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters