## Torfinn Ingolfsen ([email protected]): > I looked into the build log, but it doesn't tell me anything new: > Coins is detected during configure / setup phase, and the suddenly > during compile / link it fails a step because Coin (specifically > -lCoin) can't be found
The main question is why it detects Coin as "-lCoin", which can't be found by the linker without a matching "-L/usr/local/lib" (it's ok when Coin is linked as just "/usr/local/lib/libCoin.so"). There may be some hints in cmake's somewhat more verbose output in work/.build/CMakeFiles/CMakeOutput.log (and CMakeError.log). I would suspect something in your environment (LDFLAGS? picked up different linker between configure and build stages?) Anyways, I gave up on this (there are too many variables and I still cannot reproduce this in clean environments, whatever I do Coin is picked up as expected). As a possible workaround I forced "-L/usr/local/lib" into LDFLAGS - looks like the linker invocation should now work in your case. Regards, Christoph -- Spare Space _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[email protected]"
