flyker wrote:
> After install version 20030911 i run very simply program compiled with
> wine and after it the system (RedHat 9.0) become very slow,
> it does not respond keyboard and mouse and it much use hard disk.
> I think it alloc memory in cycle.
> After some time the system kill wine.
> Installation witnout nptl.
> Previous version 20030813 work fine.
> Any ideas ?
>
I've noticed the same problem - it's gobbling up the memory. The problem seems to be with WINEDLLPATH.


Near the bottom of the script that winewrap creates to start your program there is a section:
...
# figure out the full app path
if [ -n "$appdir" ]; then
apppath="$appdir/$appname.exe.so"
WINEDLLPATH="$appdir:$WINEDLLPATH"
export WINEDLLPATH
else
apppath="$appname.exe.so"
fi
...


Delete the lines containing WINEDLLPATH.

This works for me - but those lines were in 20020813 as well so it seems the regression must lie elsewhere.


-- Richard




Reply via email to