Difference between revisions of "Talk:Cross Compiling FileZilla 3 for Windows under Ubuntu or Debian GNU/Linux"

From FileZilla Wiki
Jump to navigationJump to search
(Created page with 'Doing this as root is both dangerous and unnecessary. Please update the guide to use a prefix that is writable by the user, such as ~/prefix')
 
Line 1: Line 1:
 
Doing this as root is both dangerous and unnecessary. Please update the guide to use a prefix that is writable by the user, such as ~/prefix
 
Doing this as root is both dangerous and unnecessary. Please update the guide to use a prefix that is writable by the user, such as ~/prefix
 +
 +
-- OK, I'll update it.
 +
 +
by [[User:CodeSquid]], mingw32 is broken in Debian 5. But, I can't find snprintf and %lu, and I'm happy to use FileZilla 3 cross-compiled in Debian 5.
 +
 +
tar jxvf <all libraries, filezilla tar.bz2>
 +
find . -name "*.c*" -exec grep -H "snprintf.*\%lu" {} \; | wl -l
 +
        0
 +
 +
wxWidget use some sprintf (not snprintf). However, sprintf's %lu operate correcttly.

Revision as of 00:45, 20 September 2009

Doing this as root is both dangerous and unnecessary. Please update the guide to use a prefix that is writable by the user, such as ~/prefix

-- OK, I'll update it.

by User:CodeSquid, mingw32 is broken in Debian 5. But, I can't find snprintf and %lu, and I'm happy to use FileZilla 3 cross-compiled in Debian 5.

tar jxvf <all libraries, filezilla tar.bz2>
find . -name "*.c*" -exec grep -H "snprintf.*\%lu" {} \; | wl -l
       0

wxWidget use some sprintf (not snprintf). However, sprintf's %lu operate correcttly.