-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Various updates for the Julia integration
1. test against Julia 1.4.2 instead of 1.2.0 2. fix compiler constness warnings in weakptr.c 3. use `jl_threadid()` and `jl_get_current_task()` helpers to avoid access to `JuliaTLS` members Point 3 is important because the layout of the `jl_ptls_t` struct keeps changing between Julia versions, meaning that one has to recompile GAP when updating Julia. With this patch, we avoid accessing the `tid` and `current_task` members. However, we still access `root_task` and `safe_restore`. More work will be needed to deal with those.
- Loading branch information
Showing
2 changed files
with
10 additions
and
7 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
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