How does --with-wine64 work?

2009-12-07 Thread Austin English
Vincent asked me to get add a --with-wine64 option to my build script. I was testing around, and can't seem to get it to work: $ mkdir - p $HOME/wine{32,64} $ cd $HOME/wine64 $ ~/wine-git/configure --enable-win64 $ make -j4 $ cd $HOME/wine32 $ ~/wine-git/configure --with-wine64=~/wine64 ...

Re: How does --with-wine64 work?

2009-12-07 Thread Steven Edwards
On Mon, Dec 7, 2009 at 7:44 PM, Austin English austinengl...@gmail.com wrote: checking for the directory containing the Wine tools... configure: error: could not find Wine tools in ~/wine64/  ~/wine-git/configure --with-wine64=~/wine64/tools/ ... checking for the directory containing the

Re: How does --with-wine64 work?

2009-12-07 Thread Steven Edwards
On Mon, Dec 7, 2009 at 9:30 PM, Steven Edwards winehac...@gmail.com wrote: This looks similar to the cross-compile build for mingw where you need a checkout with the normal tools built for your host and then another checkout for your target. You then run and point the target configure at the

Re: How does --with-wine64 work?

2009-12-07 Thread Maarten Lankhorst
Austin English schreef: Vincent asked me to get add a --with-wine64 option to my build script. I was testing around, and can't seem to get it to work: $ mkdir - p $HOME/wine{32,64} $ cd $HOME/wine64 $ ~/wine-git/configure --enable-win64 $ make -j4 $ cd $HOME/wine32 $ ~/wine-git/configure

Re: How does --with-wine64 work?

2009-12-07 Thread Austin English
On Tue, Dec 8, 2009 at 1:01 AM, Maarten Lankhorst m.b.lankho...@gmail.com wrote: Austin English schreef: Vincent asked me to get add a --with-wine64 option to my build script. I was testing around, and can't seem to get it to work: $ mkdir - p $HOME/wine{32,64} $ cd $HOME/wine64 $