mk: fix objects and libraries order when linking
authorDavid Marchand <david.marchand@6wind.com>
Fri, 4 Dec 2015 17:11:03 +0000 (18:11 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 4 Dec 2015 19:10:35 +0000 (20:10 +0100)
commitebfd02be8a956536d34d8bf57dc17d152dfaf272
tree5f6f7feef9a47fd1697ed43939267ac9567ac538
parent992ecdd839abaadda629295ed565e08618cc060c
mk: fix objects and libraries order when linking

The initial problem has been seen while building mlx4 pmd as a shared
library on Ubuntu 14.04 (gcc 4.8.4-2ubuntu1~14.04).

Resulting .so will lack the DT_NEEDED entry for libibverbs:

marchand@ubuntu1404:~/dpdk$ ldd ./build/lib/librte_pmd_mlx4.so
linux-vdso.so.1 =>  (0x00007fff87ebb000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f2ced21a000)
/lib64/ld-linux-x86-64.so.2 (0x00007f2ced821000)

And trying to load it in testpmd triggers this error:

[...]
EAL: librte_pmd_mlx4.so: undefined symbol: ibv_query_port
[...]

After some strace, the problem comes from the --as-needed option passed to the
linker.

It is safer to specify libraries we depend on after the objects we are linking
into a shared library, especially when the linker is invoked with options like
--as-needed.

Fixes: bef06a8a0655 ("mk: set library dependencies in shared object file")

Signed-off-by: David Marchand <david.marchand@6wind.com>
Acked-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
mk/rte.lib.mk