Reputation: 3061
I am trying to build QuickFix(1.15.1) library on Linux CentOS release 6.10. I have done following steps
What needs to be done to generate libquickfix.a?
Upvotes: 1
Views: 784
Reputation: 117643
configure
has an option:
--enable-static
- build static librariesSo:
./configure --enable-static
make -j
and then you'll find the static library here:
lib/libquickfix.a
Upvotes: 4