Hi,
I work on a Ubuntu 16 server, and I intalled SweeD as suggested:
$ git clone https://github.com/alachins/sweed.git
$ make -f Makefile.gcc
( I was actually interested in Makefile.PTHREADS but didnt work)
The binary was generated all right, but when I try to run SweeD I get:
$ ./PATH/SweeD -name test -input file.vcf -grid 5
-bash: ./PATH/SweeD: No such file or directory
The file is certainly there:
$ file PATH/SweeD
PATH/SweeD: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked,
interpreter /lib64/ld-linux-x86-64.so.2,for GNU/Linux 2.6.32, BuildID[sha1]=eebc83d03036d6f62f5906d0fee91ac4f76d1a0c, not stripped
I thought may be some library was missing:
$ objdump -p SweeD | grep NEEDED
NEEDED libm.so.6
NEEDED libc.so.6
But both of these libraries seems present in the system:
$ ldconfig -p | grep libm.so.6
libm.so.6 (libc6,x86-64, OS ABI: Linux 2.6.32) => /lib/x86_64-linux-gnu/libm.so.6
$ ldconfig -p | grep libc.so.6
libc.so.6 (libc6,x86-64, OS ABI: Linux 2.6.32) => /lib/x86_64-linux-gnu/libc.so.6
Im no expert in linux (all this comes from threads). Any suggestion or thoughts how to make it work? Thanks a bunch
d!!!
Hi,
I work on a Ubuntu 16 server, and I intalled SweeD as suggested:
$ git clone https://github.com/alachins/sweed.git
$ make -f Makefile.gcc
( I was actually interested in Makefile.PTHREADS but didnt work)
The binary was generated all right, but when I try to run SweeD I get:
$ ./PATH/SweeD -name test -input file.vcf -grid 5
-bash: ./PATH/SweeD: No such file or directory
The file is certainly there:
$ file PATH/SweeD
PATH/SweeD: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked,
interpreter /lib64/ld-linux-x86-64.so.2,for GNU/Linux 2.6.32, BuildID[sha1]=eebc83d03036d6f62f5906d0fee91ac4f76d1a0c, not stripped
I thought may be some library was missing:
$ objdump -p SweeD | grep NEEDED
NEEDED libm.so.6
NEEDED libc.so.6
But both of these libraries seems present in the system:
$ ldconfig -p | grep libm.so.6
libm.so.6 (libc6,x86-64, OS ABI: Linux 2.6.32) => /lib/x86_64-linux-gnu/libm.so.6
$ ldconfig -p | grep libc.so.6
libc.so.6 (libc6,x86-64, OS ABI: Linux 2.6.32) => /lib/x86_64-linux-gnu/libc.so.6
Im no expert in linux (all this comes from threads). Any suggestion or thoughts how to make it work? Thanks a bunch
d!!!