hello!
i'm trying to compile ykchalresp statically for a custom initramfs, so no dependencies from the executable to libs.
for some reason i do not succeed.
ykchalresp always links to some libs:
Code:
ldd ykchalresp
linux-vdso.so.1 (0x00007fff2b1e0000)
libyubikey.so.0 => /usr/lib64/libyubikey.so.0 (0x00007fe71fa0e000)
libusb-1.0.so.0 => /usr/lib64/libusb-1.0.so.0 (0x00007fe71f7fe000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fe71f5e1000)
libc.so.6 => /lib64/libc.so.6 (0x00007fe71f237000)
librt.so.1 => /lib64/librt.so.1 (0x00007fe71f02e000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe71fc11000)
what i did was, checkout the code from github, run autoscan, autoconf, autoreconf and:
Code:
./configure --enable-static
make
can anyone point me in the right direction? i don't know what i'm missing.
thx