vote up 2 vote down star
1

I've begun using MinGW/MSYS in an attempt to use some Linux libraries on Windows. Using

./configure --prefix=/mingw 
make
make install

has worked well so far, but I've had two different libraries fail on 'make install', on an 'ln -s' call. It goes something like this:

rm -f /mingw/lib/libvamp-sdk.so.2
ln -s libvamp-sdk.so.2.0.0 /mingw/lib/libvamp-sdk.so.2
ln: creating symbolic link `/mingw/lib/libvamp-sdk.so.2' to `libvamp-sdk.so.2.0.0': No such file or directory
make: *** [install] Error 1

First of all, what is the intention of the makefile? /mingw/lib/libvamp-sdk.so.2.0.0 exists, so replacing the above 'ln -s' call with

ln -s /mingw/lib/libvamp-sdk.so.2.0.0 /mingw/lib/libvamp-sdk.so.2

will work, but I'm not sure if this is what the author had intended.

More importantly, why does this occur (I'm guessing it works fine on native Linux systems) and what's the easiest way to get around it? I could manually edit the makefile but I'm wondering if there's a better solution to this.

Many thanks for your input!

flag

40% accept rate
First thing, could you please do the steps separately so we can at least pinpoint where this is failing? My guess is it's on "make install". So instead of doing them all in one line with &&, just run each command separately, wait for it to finish, then enter the next. – Matthew Talbert Sep 17 at 16:49
I actually did run the three steps separately. I just put them on one line with && while I was asking the question. In any case, I'm certain that the error occurs during make install. I've modified my question, sorry for the unnecessary confusion. – psas Sep 18 at 2:42
Sorry to not actually help a lot with the question, but why is it creating *.so's rather than *.dll's? Does configure recognize that you're on Windows? If it helps any, I believe "ln" with MSYS merely creates a copy of the file, rather than linking it (as linking really isn't supported on Windows). Also, in what directory is it, when it fails? – Matthew Talbert Sep 24 at 6:03

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.