core: restrict liboakcore exports to the C ABI via version script
Even statically linked runtime libraries must not leak symbols: the linker version script now whitelists oakcore_* only. nm reports 188 oakcore_* exports and zero anything else.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
{
|
||||
global:
|
||||
oakcore_*;
|
||||
local:
|
||||
*;
|
||||
};
|
||||
Reference in New Issue
Block a user