Adapt to JuliaLang/julia#60988: add JD parameter to JIT API#557
Merged
Conversation
vchuravy
commented
May 7, 2026
Codecov Report❌ Patch coverage is
@@ Coverage Diff @@
## master #557 +/- ##
==========================================
+ Coverage 85.90% 85.96% +0.05%
==========================================
Files 47 47
Lines 2980 2985 +5
==========================================
+ Hits 2560 2566 +6
+ Misses 420 419 -1
... and 2 files with indirect coverage changes 🚀 New features to boost your workflow:
|
JLJITGetExternalJITDylib is replaced by JLJITCreateJITDylib (creates a fresh JITDylib linked to GlobalJD/SessionJD), and JLJITLookup is replaced by JLJITJDLookup which takes an explicit JITDylib. The public API is made consistent across Julia versions: lookup always requires a JITDylib argument. On pre-1.13 Julia the JD is accepted but internally ignored (the old symbol-table search is used). On 1.13+ the JD is passed through to the new API. The old no-JD lookup(jljit, name) is deprecated on pre-1.13 Julia and removed on 1.13+. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
maleadt
approved these changes
May 12, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Adapt to JuliaLang/julia#60988