Edit

kc3-lang/libxkbcommon/test/meson_test.map

Branch :

  • Show log

    Commit

  • Author : Dimitry Andric
    Date : 2025-01-10 13:58:39
    Hash : 11140ded
    Message : Use test map for checking --version-script, instead of full map Various problems can occur when using the full `xkbcommon.map` file when checking whether the `--version-script` linker option works in `meson.build`. For instance, newer linkers typically complain about non-existing symbols, so in commit ebe4157 `--undefined-version` was added to work around that. But then in commit 1d8a25d6 another workaround needed to be added for older linkers. It is better to use a minimalistic linker script for testing instead. The other workarounds can then be removed.

  • test/meson_test.map
  • VERSION_1 {
        global:
            main;
        local:
            *;
    };