Displaying 1 result from an estimated 1 matches for "dlldir".
Did you mean:
deldir
2008 Mar 27
2
WINEDLLPATH weirdness
...on.
The DLL for my library gets built as:
/home/erikd/Bzr/libsndfile-mingw/src/.libs/libsndfile-1.dll
and the test suite binaries get built in:
/home/erikd/Bzr/libsndfile-mingw/tests
If I go into that directory and run the following script:
#!/bin/bash
dll=libsndfile-1.dll
dlldir=/home/erikd/Bzr/libsndfile-mingw/src/.libs
if [ ! -f "$dlldir/$dll" ]; then
echo "Can't find DLL."
exit 1
fi
export WINEDLLPATH="$dlldir:$WINEDLLPATH"
exe=.libs/floating_point_test.exe
if [ -f $exe ]; then
exec $ex...