Charlie Tapping
05/09/2023, 4:29 PMCharlie Tapping
05/09/2023, 5:21 PMobjdump -p ./program.kexe | grep NEEDED
In my case I found that the following libs are dyn linked:
NEEDED libresolv.so.2
NEEDED libm.so.6
NEEDED libpthread.so.0
NEEDED libutil.so.1
NEEDED libcrypt.so.1
NEEDED librt.so.1
NEEDED libdl.so.2
NEEDED libgcc_s.so.1
NEEDED libc.so.6
NEEDED ld-linux-x86-64.so.2
This is quite odd considering Iâm running println(âHello worldâ) that it would need anything else but libcLandry Norris
05/09/2023, 6:45 PMCharlie Tapping
05/10/2023, 8:39 AMnapperley
05/11/2023, 1:25 AM