-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
RFC: create Libc and Libdl modules #10328
Merged
Merged
Conversation
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
JeffBezanson
force-pushed
the
jb/libc
branch
2 times, most recently
from
March 9, 2015 20:12
8725fdd
to
67d3cd2
Compare
JeffBezanson
added a commit
that referenced
this pull request
Mar 16, 2015
RFC: create Libc and Libdl modules
PkgEvaluator is going to have a field day with this one, since it breaks BinDeps. Working on a fix, somebody say so if you're further along than I am. |
tkelman
added a commit
to JuliaPackaging/BinDeps.jl
that referenced
this pull request
Mar 16, 2015
Libdl is now a separate module
tkelman
added a commit
to JuliaPackaging/BinDeps.jl
that referenced
this pull request
Mar 16, 2015
Libdl is now a separate module
simonster
added a commit
to simonster/PyCall.jl
that referenced
this pull request
Mar 17, 2015
stevengj
added a commit
to JuliaPy/PyCall.jl
that referenced
this pull request
Mar 18, 2015
kdesysadmin
pushed a commit
to KDE/cantor
that referenced
this pull request
Apr 26, 2018
Summary: Update `FindJulia.cmake` according new version of [this](https://gist.github.com/JayKickliter/06d0e7c4f84ef7ccc7a9), add small change (change `Sys` to `Libdl` accroding [this](JuliaLang/julia#10328)) and add checking of existing dev files of julia, because you can have julia, but haven't include files. Also fix some problems in `juliabackends` cmake files, related with case sensivity of cmake variables. Reviewers: #cantor, asemke Reviewed By: #cantor, asemke Subscribers: #cantor, #kde_edu Tags: #kde_edu, #cantor Differential Revision: https://phabricator.kde.org/D12121
kdesysadmin
pushed a commit
to KDE/cantor
that referenced
this pull request
May 7, 2018
Summary: Update `FindJulia.cmake` according new version of [this](https://gist.github.com/JayKickliter/06d0e7c4f84ef7ccc7a9), add small change (change `Sys` to `Libdl` accroding [this](JuliaLang/julia#10328)) and add checking of existing dev files of julia, because you can have julia, but haven't include files. Also fix some problems in `juliabackends` cmake files, related with case sensivity of cmake variables. Reviewers: #cantor, asemke Reviewed By: #cantor, asemke Subscribers: #cantor, #kde_edu Tags: #kde_edu, #cantor Differential Revision: https://phabricator.kde.org/D12121
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.
This moves a lot of low-level Base exports inside Libc and Libdl modules.
Some things, like
dlopen
anddlsym
, might be widely used in packages, in which case we can add deprecations.I'd like to see more breaking-down of the Base exports list. Filesystem operations are another candidate.
TODO: Doc updates for this.