Page 1 of 1

Can't build QxOrm 1.2.2 on Linux with boost 1.49

PostPosted: Thu Mar 22, 2012 2:58 pm
by fire2000
Hello,
i can't build QxOrm 1.2.2 dynamically on Archlinux with Boost 1.49 http://www.archlinux.org/packages/extra/x86_64/boost/.
I do:
Code: Select all
qmake -config release
make

Error message on link:
Code: Select all
/usr/bin/ld: cannot find -lboost_serialization-mt
collect2: ld returned 1 exit status

Re: Can't build QxOrm 1.2.2 on Linux with boost 1.49

PostPosted: Thu Mar 22, 2012 3:43 pm
by fire2000
Nevermind.
Need change in QxOrm.pri:
Code: Select all
QX_BOOST_LIB_SERIALIZATION_RELEASE = "boost_serialization-mt"

to:
Code: Select all
QX_BOOST_LIB_SERIALIZATION_RELEASE = "boost_serialization"


and compilation works!