Re: Error compile wine1.3 on Ubuntu10.04 64bit

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> CFLAGS="-m32 $(CFLAGS)" LDFLAGS="-L/usr/lib32 $(LDFLAGS)" ./configure


Did you follow the steps on WineOn64bit page?

http://wiki.winehq.org/WineOn64bit

Your CFALGS and LDFLAGS don't look correct.  $(...) is command substitution, similar to `...` in bash:

http://www.gnu.org/software/bash/manual/bashref.html#Command-Substitution

You probably want something more like:

CFLAGS="-m32 ${CFLAGS}" LDFLAGS="-L/usr/lib32 ${LDFLAGS}" ./configure --verbose

Again, using bash, ${...} is a parameter expansion, not a command substitution.



[Index of Archives]     [Gimp for Windows]     [Red Hat]     [Samba]     [Yosemite Camping]     [Graphics Cards]     [Wine Home]

  Powered by Linux