Remove the three problematic entries: - `aligned_free` is not a 'real' function and does not need to be handled here. There is no symetry with the `aligned_malloc` symbol here. - `__end` and `_bss_start` seem to have been mis-typed from the beginning (actual symbols seem to be `_end` and `__bss_start`). Regardless, neither `gold` nor `mold` seem to take these directives from the LD version script into account (result is the same for them when removed for the `.map` file), so removing them. Pull Request: https://projects.blender.org/blender/blender/pulls/127761
45 lines
763 B
Plaintext
45 lines
763 B
Plaintext
/* Hide all symbols except a few required ones.
|
|
*
|
|
* Otherwise LLVM symbols conflict with Mesa llvm pipe, boost symbols conflict
|
|
* with Luxrender, etc. */
|
|
{
|
|
global:
|
|
/* Essential symbols for the program to start and exit. */
|
|
_fini;
|
|
_init;
|
|
/* Needed for Python modules to work. */
|
|
Py*;
|
|
_Py*;
|
|
/* Needed for sanitizers. Based on:
|
|
* llvm/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py. */
|
|
__asan*;
|
|
__lsan*;
|
|
__tsan*;
|
|
__ubsan*;
|
|
__sanitizer*;
|
|
__Znw*;
|
|
__Zna*;
|
|
__Zdl*;
|
|
__Zda*;
|
|
aligned_alloc;
|
|
calloc*;
|
|
free;
|
|
mallinfo;
|
|
malloc*;
|
|
mallopt;
|
|
memalign;
|
|
memcpy;
|
|
posix_memalign;
|
|
pthread_*;
|
|
pvalloc;
|
|
realloc*;
|
|
realpath;
|
|
sched_*;
|
|
valloc;
|
|
/* needed on FreeBSD */
|
|
__progname;
|
|
environ;
|
|
local:
|
|
*;
|
|
};
|