-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Remove undefined symbols from versioning script #55319
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
Closed
Closed
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
aba4031
Remove undefined symbols from versioning script
Zentrik 932fb98
Add trailing new line
Zentrik 402f5c9
Add freebsd symbols back
Zentrik deec82e
Make sure flisp.expmap is always generated
Zentrik e76ff00
Add back asprint and remove environ, __progname declerations
Zentrik 56ceb51
Revert whitespace change
Zentrik bb811d2
Merge branch 'master' into fix-version-script
fingolfin dc14ec5
Try to fix asprintf
Zentrik 0265415
Darwin fix
Zentrik 4039a01
Whitespace fix
Zentrik b1af72b
Fix asprintf warning
Zentrik d5b6341
Fix asprint warning
Zentrik 5ef593c
Fix asan/tsan builds
Zentrik 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@JULIA_SHLIB_SYMBOL_VERSION@ { | ||
global: | ||
pthread*; | ||
__stack_chk_*; | ||
bitvector_*; | ||
ios_*; | ||
jl_*; | ||
ijl_*; | ||
_jl_mutex_*; | ||
julia_*; | ||
u8_*; | ||
uv_*; | ||
utf8proc_*; | ||
_jl_timing_*; | ||
LLVMExtra*; | ||
JLJIT*; | ||
llvmGetPassPluginInfo; | ||
|
||
/* freebsd */ | ||
environ*; | ||
__progname*; | ||
|
||
local: | ||
*; | ||
}; | ||
|
||
@LLVM_SHLIB_SYMBOL_VERSION@ { | ||
global: | ||
/* Make visible so that linker will merge duplicate definitions across DSO boundaries */ | ||
_ZN4llvm3Any6TypeId*; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
@JULIA_SHLIB_SYMBOL_VERSION@ { | ||
global: | ||
pthread*; | ||
__stack_chk_*; | ||
asprintf; | ||
bitvector_*; | ||
ios_*; | ||
arraylist_grow; | ||
small_arraylist_grow; | ||
jl_*; | ||
ijl_*; | ||
_jl_mutex_*; | ||
julia_*; | ||
libsupport_init; | ||
memhash; | ||
memhash32; | ||
memhash32_seed; | ||
memhash_seed; | ||
u8_*; | ||
uv_*; | ||
utf8proc_*; | ||
_IO_stdin_used; | ||
_jl_timing_*; | ||
LLVMExtra*; | ||
JLJIT*; | ||
|
||
/* freebsd */ | ||
environ*; | ||
__progname*; | ||
|
||
local: | ||
*; | ||
}; |
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
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.
Why the new
*
here?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.
I can't figure out how to have
environ
andprogname
be defined. The *, means lld won't throw an undefined error.