Linux problems
-
wrote on 10 Sept 2014, 22:06 last edited by
I thought to build my program on a 32bit Linux platform and distribute it with just ia32-libs dependencies, but not so fast...it does not work.
Just in the Ubuntu family alone, I build on Ubuntu 14.04.1 LTS 32 and under 64 I get:
@
ldd myapplibX11.so.6 => not found
libX11-xcb.so.1 => not found
libxcb.so.1 => not found
libstdc++.so.6 => not found
libgcc_s.so.1 => not found
@Can I compile these dependencies into my qt static or is there another way that things are done?
-
wrote on 10 Sept 2014, 23:26 last edited by
I don't know if you can compile these libraries statically, I guess so.
Another way would be to install i386 versions of the libraries
For example the following line should install i386 version of libX11-xcb
@
sudo apt-get install libx11-xcb-dev:i386
@ -
wrote on 11 Sept 2014, 01:13 last edited by
Thanks for the reply.
http://qt-project.org/doc/qt-5/linux-deployment.html
The link above has me thinking that it would be easier to just do a compile each for 32/64. I'd appreciate comments from anyone distributing for Linux.
2/3