Hi,
I am new to nim and have a small problem: My dev station is debian jessie. I compiled a small program which plays with the readLine(stdin) and rdstdin module. After compiling I put the programm to a debian wheezy station. After starting the program, the following error shows up:
./vlogger: /lib/x86_64-linux-gnu/libc.so.6: version 'GLIBC_2.14' not found (required by ./vlogger)
Debian wheezy has GLIBC Version 2.13. I know it is possible to install the newer version from unstable, but the programs target is on productive hosting servers, where I won't install a glibc from unstable... . So I inspected with objdump -T whats the problem:
0000000000000000 DF UND 0000000000000000 GLIBC_2.14 memcpy
I am not sure one way may to compile the program on debian wheezy, but perhaps there is a way to statically bind the necessary lib. But how?
Thanks for help.