Here is and error which Im getting
$ ./idaq
bash: ./idaq: No such file or directory
Yes a readed this and this and whole google page about this error but I could not find an answer, here is whats idaq requires
readelf -d idaq | grep NEEDED
0x00000001 (NEEDED) Shared library: [libida.so]
0x00000001 (NEEDED) Shared library: [libQtXml.so.4]
0x00000001 (NEEDED) Shared library: [libQtGui.so.4]
0x00000001 (NEEDED) Shared library: [libQtCore.so.4]
0x00000001 (NEEDED) Shared library: [libpthread.so.0]
0x00000001 (NEEDED) Shared library: [libstdc++.so.6]
0x00000001 (NEEDED) Shared library: [libm.so.6]
0x00000001 (NEEDED) Shared library: [libgcc_s.so.1]
0x00000001 (NEEDED) Shared library: [libc.so.6]
when I run ldd here is what I get
ldd idaq
not a dynamic executable
All required files are present what am I missing ?
file idaq
anduname -m
? – steeldriver Mar 01 '17 at 17:08uname
andfile
outputs, it is a 32-bit ELF executable but your system is 64-bit - it's likely failing to run because it can't find 32-bit versions of the shared libraries – steeldriver Mar 01 '17 at 18:29