-
Notifications
You must be signed in to change notification settings - Fork 746
[GAP] Update to 4.15.0 #11987
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[GAP] Update to 4.15.0 #11987
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c8e258e
[GAP] Update to 4.15.0-beta1
lgoettgens 6aa87ad
Update patches
lgoettgens a939c41
[GAP] Update to v4.15.0-beta2
lgoettgens 03006f3
[GAP] Update to v4.15.0-beta3
lgoettgens f7620a7
Merge branch 'master' into lg/GAP
lgoettgens cecf397
Update used libjulia
lgoettgens f4a5a3d
[GAP] Update to v4.15.0
lgoettgens File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,25 +1,24 @@ | ||
| From 64f0c59db8da6f9cf245c4ccfcc6c33f728ac67e Mon Sep 17 00:00:00 2001 | ||
| From 7a92caaa6d83a1a9227c8de749404d22a1a2c102 Mon Sep 17 00:00:00 2001 | ||
| From: Max Horn <max@quendi.de> | ||
| Date: Mon, 9 Dec 2024 22:14:26 +0100 | ||
| Date: Mon, 1 Sep 2025 15:04:15 +0200 | ||
| Subject: [PATCH] gac: use -lgap when bulding kernel extensions | ||
|
|
||
| --- | ||
| Makefile.rules | 2 +- | ||
| 1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
|
||
| diff --git a/Makefile.rules b/Makefile.rules | ||
| index 3da46a54f..88567c798 100644 | ||
| index 1213125bb..c031e3f6e 100644 | ||
| --- a/Makefile.rules | ||
| +++ b/Makefile.rules | ||
| @@ -670,7 +670,7 @@ install-gaproot: CITATION | ||
| @@ -671,7 +671,7 @@ install-gaproot: install-dirs CITATION | ||
|
|
||
| # the following lines adjust variables for the installed sysinfo.gap | ||
| install-sysinfo: SYSINFO_CPPFLAGS = -I${includedir}/gap -I${includedir} $(GAP_DEFINES) | ||
| install-sysinfo: SYSINFO_CPPFLAGS = -I${includedir}/gap/extra $(GAP_DEFINES) | ||
| -install-sysinfo: SYSINFO_LDFLAGS = $(ABI_CFLAGS) | ||
| +install-sysinfo: SYSINFO_LDFLAGS = $(ABI_CFLAGS) -L$(libdir) -lgap | ||
| install-sysinfo: SYSINFO_GAP = $(bindir)/gap | ||
| install-sysinfo: SYSINFO_GAC = $(bindir)/gac | ||
| install-sysinfo: GMP_PREFIX = | ||
| -- | ||
| 2.47.0 | ||
|
|
||
| 2.50.1 | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fingolfin Is this patch something that could be upstreamed to gap? Or is this specific to the way GAP.jl compiles kernel extensions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For now this is GAP.jl specific. Upstreaming this cleanly is a bit hairy, see gap-system/gap#5780