Skip to content
Snippets Groups Projects
Select Git revision
  • 171044f3fca084bd1c5c1f8f4bfe146434b07f0b
  • master default protected
  • doctest
  • 3.2.5
  • 3.2.4
  • 3.2.3
  • 3.2.2
  • 3.2.1
  • 3.2.0
  • 3.1.5
  • 3.1.4
  • 3.1.3
  • 3.1.2
  • 3.1.1
  • 3.1.0
  • 3.1.0-pre1
  • 3.0.0
  • 2.3.0
  • 2.2.2
  • 2.2.1
  • 2.2.0
  • 2.1.0
  • AndroidSdk_v0.2.0
23 results

version_script.ver

Blame
  • user avatar
    Richard van der Hoff authored
    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.
    488567a4
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    version_script.ver 156 B
    # this is a 'version script' for the linker which tells it to only export
    # symbols starting 'olm_'.
    
    {
        global:
            olm_*;
        local:
            *;
    };