https://bugs.winehq.org/show_bug.cgi?id=57859
--- Comment #69 from Shmerl shtetldik@gmail.com --- Sorry for slight off-topic, but since above is related to the whole new wow64 mode and someone might know, do I still need to set LD_LIBRARY_PATH when running non default location of wine?
I.e. before I used this kind of wrapper environment set up script (where I set wine_path as base location of the custom Wine I want to use:
if [[ "${wine_path+isset}" ]]; then export PATH=${wine_path}/bin:$PATH
if [[ -e "${wine_path}/lib/wine/x86_64-unix" ]]; then export LD_LIBRARY_PATH="${wine_path}/lib/wine/x86_64-unix:${LD_LIBRARY_PATH}" fi
if [[ -e "${wine_path}/lib/wine/i386-unix" ]]; then export LD_LIBRARY_PATH="${wine_path}/lib/wine/i386-unix:${LD_LIBRARY_PATH}" fi fi
Is this still necessary with latest wine or it finds its *.so libs correctly on its own?