Appiah
2009-Aug-24 08:20 UTC
[Wine] Compile wine source from git "Try using a Unicode string"
Getting the source from git , trying to compile WITHOUT patches. Running Ubuntu 9.04 x86_64 This is the configure (got it from http://wiki.winehq.org/WineOn64bit#head-d6dc6aaec38bf9f2198767215ea1813c44a5981d ) Code: CC="gcc-4.3 -m32" LDFLAGS="-L/lib32 -L/usr/lib32 -Wl,-rpath,/lib32 -Wl,-rpath,/usr/lib32" ./configure -v make depend goes fine but make ends up with : Code: LD_LIBRARY_PATH="../../libs/wine:$LD_LIBRARY_PATH" ../../tools/wrc/wrc --nostdinc -I. -I. -I../../include -I../../include -D__WINESRC__ -D_KERNEL32_ -folocale_rc.res locale_rc.rc Source: ?Q?? a4 51 a4 eb Unicode: 5341 6708 Back: ?$? a2 cc a4 eb nls/cht.nls:84:16: Error: String ?Q?? does not convert identically to Unicode and back in codepage 950. Try using a Unicode string instead make[2]: *** [locale_rc.res] Error 1 make[2]: Leaving directory `/home/appiah/Documents/wine-git/dlls/kernel32' make[1]: *** [kernel32] Error 2 make[1]: Leaving directory `/home/appiah/Documents/wine-git/dlls' make: *** [dlls] Error 2 Any idea on what I'm doing wrong?
Austin English
2009-Aug-24 12:09 UTC
[Wine] Compile wine source from git "Try using a Unicode string"
On Mon, Aug 24, 2009 at 3:20 AM, Appiah<wineforum-user at winehq.org> wrote:> Getting the source from git , trying to compile WITHOUT patches. > Running Ubuntu 9.04 x86_64 > > This is the configure (got it from http://wiki.winehq.org/WineOn64bit#head-d6dc6aaec38bf9f2198767215ea1813c44a5981d ) > > Code: > CC="gcc-4.3 -m32" LDFLAGS="-L/lib32 -L/usr/lib32 -Wl,-rpath,/lib32 -Wl,-rpath,/usr/lib32" ./configure -vI really doubt you need all that, compiles fine here with just: CC=""gcc -m32" ./configure -v -- -Austin