-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'fake' JLLs for all binary dependencies
JLLs provide the binary interaction interface that both packages and the Pkg resolver require in order to properly version and interact with the binary dependencies shipped with Julia. This PR changes all binary dependencies to carry along a JLL package that dlopen()'s the binary that ships along with Julia. These JLL packages are not the true JLL packages that are generated by BinaryBuilder, but are instead "fake" JLLs that simply `dlopen(filename)` and rely upon the default dlopen path to find the appropriate libraries, which affords the opportunity for system libraries and bundled-with-julia libraries alike to both be represented through the JLL interface.
- Loading branch information
1 parent
77a1fe8
commit 5f43f3e
Showing
93 changed files
with
1,662 additions
and
387 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 |
---|---|---|
|
@@ -31,3 +31,4 @@ | |
/perf* | ||
.DS_Store | ||
.idea/* | ||
.vscode/* |
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
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
Oops, something went wrong.