Re: Preliminary 0.9.0 tarballs
Posted by Knox, Matt on Nov 29, 2007; 2:42pm
URL: http://quantlib.414.s1.nabble.com/Preliminary-0-9-0-tarballs-tp11440p11447.html
>> That would be:
>>
>> export CPPFLAGS="-I/local/include"
>> export LDFLAGS="-L/local/lib"
ahh, that makes sense. Unfortunately, it still can't find the unit test framework. But I think I know why...
Looking in config.log, I see the following line:
configure:20002: g++ -o conftest.exe -g -O2 -Wall -I/local/include -L/local/lib conftest.cpp -lboost_unit_test_framework-gcc34 >&5
But when building boost with mingw, it names the libraries like this:
boost_unit_test_framework-mgw34-1_34_1.a
boost_unit_test_framework-mgw34-mt-1_34_1.a
etc...
notice the "-mgw" instead of "-gcc"