Re: distributing a app frozen by cx_freeze

2006-05-13 Thread Serge Orlov
Flavio wrote: > Well I managed to get rid of the undefined symbol message by copying > all qt libs to the freeze directory, the problem is that now the > package is huge (83MB)! > > So my question is: is there a way to find out exactly which lib is > missing ? I haven't done that myself, but I've

Re: distributing a app frozen by cx_freeze

2006-05-13 Thread Edward Elliott
Flavio wrote: > ImportError: /home/flavio/freeze/qt.so: undefined symbol: > _ZNK9QSGIStyle9classNameEv > So my question is: is there a way to find out exactly which lib is > missing ? yes - find the one with that symbol. wash, rinse, repeat. ;) -- Edward Elliott UC Berkeley School of Law (Boa

Re: distributing a app frozen by cx_freeze

2006-05-13 Thread Flavio
I know, but the whole point of cx_freeze is to generate standalone executables, so asking for an installation of an specific version of Qt is just a little better than asking the end user to install from source... -- http://mail.python.org/mailman/listinfo/python-list

Re: distributing a app frozen by cx_freeze

2006-05-13 Thread Carl Banks
Flavio wrote: > Well I managed to get rid of the undefined symbol message by copying > all qt libs to the freeze directory, the problem is that now the > package is huge (83MB)! > > So my question is: is there a way to find out exactly which lib is > missing ? You know, if you're doing this on Li

Re: distributing a app frozen by cx_freeze

2006-05-13 Thread Flavio
Well I managed to get rid of the undefined symbol message by copying all qt libs to the freeze directory, the problem is that now the package is huge (83MB)! So my question is: is there a way to find out exactly which lib is missing ? Thanks -- http://mail.python.org/mailman/listinfo/python-lis

Re: distributing a app frozen by cx_freeze

2006-05-13 Thread Flavio
Thanks for the hint. I'll try to get cx_freeze to bundle up other shared libraries it may not be bundling such as qtcanvas, qtext, qtui, etc. and see if it works. I'll post back the results to help other poor souls like me. Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: distributing a app frozen by cx_freeze

2006-05-12 Thread Carl Banks
Flavio wrote: > Traceback (most recent call last): > File > "/home/fccoelho/Downloads/cx_Freeze-3.0.2/initscripts/Console.py", line > 26, in ? > File "epigrass.py", line 4, in ? > ImportError: /home/flavio/freeze/qt.so: undefined symbol: > _ZNK9QSGIStyle9classNameEv > > It is looking for the Or

distributing a app frozen by cx_freeze

2006-05-12 Thread Flavio
Hi, After a good deal of tunig I managed to freeze my application. I ended up with an executable, and a Bunch of .so files in the install-dir. It runs fine in the original machine. I copied the install folder to another machine but the executable wont run. Here's the traceback: Traceback (most