On January 30, 2003 08:34 am, Ferenc Wagner wrote:
Hello,
is it possible somehow to run Wine from the build tree? I mean without 'make install'? It's too lengthy to install after every one line change during printf-debugging...
Short answer: Yes, you can run out of the tree, but you can't compile winelib apps. If you just want to run a program like so: wine <myprog> than there's no problem. You just need to set the env right. This is what I use:
WINEHOME=/home/dimi/dev/wine/wine export LD_LIBRARY_PATH="$WINEHOME" export WINEDLLPATH="$WINEHOME/dlls:$WINEHOME/programs" alias wine="/home/dimi/dev/wine/wine/wine"