Attention is currently required from: daniel, pespin.
fixeria has posted comments on this change by daniel. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/41534?usp=email )
Change subject: Link tests dynamically ......................................................................
Patch Set 1:
(1 comment)
Commit Message:
https://gerrit.osmocom.org/c/libosmo-sigtran/+/41534/comment/a39b67c0_da1037... : PS1, Line 7: dynamically BTW, tests are currently linked dynamically despite the `-static` (not sure if it does anything at all). By linking with `*.a` you actually link the binaries against those `*.a` files statically.
It might be me using different automake/libtool versions, but with and without this patch I am getting this (note the `dynamically linked`): ``` libosmo-sigtran$ file tests/xua/xua_test tests/xua/xua_test: ELF 64-bit LSB pie executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e1300c5a2faf7d859d5b649de7ce7dbd73e79523, for GNU/Linux 4.4.0, not stripped
```
The only difference is `libosmo-sigtran.so` not showing up in ldd output with your patch, because you're now linking it _statically_ (all `*.o` objects become part for the test binaries).