488567a45f
We want to stop aes_* and sha_* functions leaking out of our .so, as well as internal _olm_* symbols. This also means we need to link the unit tests against the objects. Possibly we should distinguish between unit tests and integration tests.
9 lines
156 B
Text
9 lines
156 B
Text
# this is a 'version script' for the linker which tells it to only export
|
|
# symbols starting 'olm_'.
|
|
|
|
{
|
|
global:
|
|
olm_*;
|
|
local:
|
|
*;
|
|
};
|