The latest version throw this error:
src/tests/TestXmlTestReporter.cpp
src/tests/TestCurrentTest.cpp
Creating libUnitTest++.a library...
Linking TestUnitTest++...
Running unit tests...
terminate called after throwing an instance of 'char const*'
Makefile:79: recipe for target 'TestUnitTest++' failed
make[2]: *** [TestUnitTest++] Aborted (core dumped)
make[2]: *** Deleting file 'TestUnitTest++'
make[2]: Leaving directory '/tmp/tmp/quickfix/UnitTest++'
Makefile:495: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/tmp/tmp/quickfix'
Makefile:404: recipe for target 'all' failed
make: *** [all] Error 2
any suggestion?
Search Criteria
Package Details: quickfix 1.13.3-5
Package Actions
- View PKGBUILD
- Download tarball
- Search wiki
- Flagged out-of-date (2014-12-25)
| Package Base: | quickfix |
|---|---|
| Description: | A full-featured open source FIX engine, currently compatible with the FIX 4.0-5.0 spec. |
| Upstream URL: | http://www.quickfixengine.org |
| Category: | lib |
| Licenses: | |
| Submitter: | lrm |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 6 |
| First Submitted: | 2010-07-29 15:13 |
| Last Updated: | 2013-09-03 14:14 |
Dependencies (2)
Required by (0)
Sources
Latest Comments
Comment by JohnRobson
Comment by zoidberg_md
There is a newer release available but it doesn't build with current `PKBGUILD`
Comment by ovidiub13
Quickfix is still under development, this package is out of date. The most recent can be found on Github: https://github.com/quickfix/quickfix
Comment by dlin
If you are interesting in quickfix, you can try fix8.
https://aur.archlinux.org/packages/fix8-git/
Comment by zoidberg_md
Fixed libboost_system and added python2 bindings. If someone can implement a better python2 installation with setup.py and without the manual .so linking I'm ready to incorporate the patch.
Comment by ovidiub13
The problem is from the quickfix project. I've added CXXFLAGS += -lboost_system to the Makefile.ams. This makes it work. I've sent a message to fix this to the quickfix creator, but I don't expect any response.
Comment by ovidiub13
Any news on how to fix this problem with the libboost_system ?
Comment by zoidberg_md
Current PKGBUILD fails to build because make scripts cannot find libboost_system, so I added an extremely dirty hack to my PKGBUILD after ./configure line:
find . -name Makefile | xargs -l sed 's/-lpthread/-lpthread -lboost_system/' -i
GCC and make are from base-devel, so you can omit them from makedepends.
boost is required for makedepends and boost-libs for depends.
Comment by awayand
include the src/sql/* and test/* directories in the package as well please
Comment by lrm
Makes sense. Done. Thanks for the feedback.