Attention is currently required from: daniel, pespin.
1 comment:
Commit Message:
Patch Set #1, 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).
To view, visit change 41534. To unsubscribe, or for help writing mail filters, visit settings.