You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[release-1.10] Backport version script fixes (#58130)
This includes three commits that fix the version script for use with
newer LLD. This has already been fixed on 1.11, 1.12, and master.
Commits were cherry-picked from #55363, #57874, and #53633.
Copy file name to clipboardExpand all lines: src/julia.expmap.in
+22-22Lines changed: 22 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -1,42 +1,42 @@
1
1
@JULIA_SHLIB_SYMBOL_VERSION@ {
2
2
global:
3
3
pthread*;
4
-
__stack_chk_guard;
5
-
asprintf;
4
+
__stack_chk_*;
5
+
asprintf*;
6
6
bitvector_*;
7
7
ios_*;
8
-
arraylist_grow;
9
-
small_arraylist_grow;
8
+
arraylist_*;
9
+
small_arraylist_*;
10
10
jl_*;
11
11
ijl_*;
12
12
_jl_mutex_*;
13
-
rec_backtrace;
13
+
rec_backtrace*;
14
14
julia_*;
15
-
libsupport_init;
16
-
localtime_r;
17
-
memhash;
18
-
memhash32;
19
-
memhash32_seed;
20
-
memhash_seed;
21
-
restore_signals;
15
+
libsupport_init*;
16
+
localtime_r*;
17
+
memhash*;
18
+
memhash32*;
19
+
memhash32_seed*;
20
+
memhash_seed*;
21
+
restore_signals*;
22
22
u8_*;
23
23
uv_*;
24
-
add_library_mapping;
24
+
add_library_mapping*;
25
25
utf8proc_*;
26
-
jlbacktrace;
27
-
jlbacktracet;
28
-
_IO_stdin_used;
29
-
_Z24jl_coverage_data_pointerN4llvm9StringRefEi;
30
-
_Z22jl_coverage_alloc_lineN4llvm9StringRefEi;
31
-
_Z22jl_malloc_data_pointerN4llvm9StringRefEi;
26
+
jlbacktrace*;
27
+
jlbacktracet*;
28
+
_IO_stdin_used*; /* glibc expects this to be exported to detect which version of glibc is being used, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634261#109 for further details */
0 commit comments