[sleuthkit-users] statically compiling sleuthkit
Brought to you by:
carrier
From: Kalin K. <me....@gm...> - 2013-12-20 06:57:17
|
Hello, I remember being able to do this a long time ago, but apparently not any more... Any hints on how to compile it statically, so that I can just send fls or some other binary to a remote machine? # git clone https://github.com/sleuthkit/sleuthkit # ./bootstrap # ./configure --prefix=/tmp/test --enable-static --disable-shared --disable-java --without-afflib --without-libewf # make -j4 # make install However # file /tmp/test/bin/fls /tmp/test/bin/fls: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.9, not stripped # ldd /tmp/test/bin/fls linux-gate.so.1 (0xf7732000) libz.so.1 => /lib/libz.so.1 (0xf7714000) libdl.so.2 => /lib/libdl.so.2 (0xf7710000) libstdc++.so.6 => /usr/lib/gcc/i686-pc-linux-gnu/4.7.3/libstdc++.so.6 (0xf7624000) libm.so.6 => /lib/libm.so.6 (0xf75fd000) libgcc_s.so.1 => /usr/lib/gcc/i686-pc-linux-gnu/4.7.3/libgcc_s.so.1 (0xf75e0000) libpthread.so.0 => /lib/libpthread.so.0 (0xf75c6000) libc.so.6 => /lib/libc.so.6 (0xf743c000) /lib/ld-linux.so.2 (0xf7733000) Alternatively, is there a public DL link with statically linked tools? Cheers, Kalin. |