Stephen Leake <[email protected]> writes: > Stephen Leake <[email protected]> writes: > >> Stephen Leake <[email protected]> writes: >> >>> Ray Donnelly <[email protected]> writes: >>> >>>> pacman -S mingw-w64-x86_64-toolchain mingw-w64-i686-toolchain >>> >>> That helps, thanks. >> >> I take it back :) >> >> configure is trying to find the Botan I installed, but g++ doesn't >> seem understand the filesystem:
I found the solution. mingw64/bin/g++ is not an msys tool, so it doesn't know msys paths. So use Windows paths! $ g++ -v -o conftest0 -I/Msys2/msys64/mingw64/include -g -O2 -Wall -I/Msys2/msys64/mingw64/include/botan-1.10 -L/Msys2/msys64/mingw64/lib conftest.cpp -lz -lbotan-1.10 That works. -- -- Stephe ------------------------------------------------------------------------------ "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available. Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Msys2-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/msys2-users
