summaryrefslogtreecommitdiff
path: root/src/system.hh.in
diff options
context:
space:
mode:
authorthdox <thdox@free.fr>2014-05-11 11:14:49 +0200
committerthdox <thdox@free.fr>2014-05-11 11:14:49 +0200
commite422b4160038a685ebcbf1496b84f3d5202338d5 (patch)
treede7617be4756091384eded1e01e61c354066bc82 /src/system.hh.in
parent56cf72ed0a7cdf134d1046559582a4a11fbfdedc (diff)
downloadfork-ledger-e422b4160038a685ebcbf1496b84f3d5202338d5.tar.gz
fork-ledger-e422b4160038a685ebcbf1496b84f3d5202338d5.tar.bz2
fork-ledger-e422b4160038a685ebcbf1496b84f3d5202338d5.zip
Library GMP is not yet ready for GCC 4.9, as described at bottom of page
http://gcc.gnu.org/gcc-4.9/porting_to.html See extract below: The <cstddef> header was updated for C++11 support and this breaks some libraries which misuse macros meant for internal use by GCC only. For instance with GMP versions up to 5.1.3, you may see: /usr/include/c++/4.9.0/cstddef:51:11: error: ‘::max_align_t’ has not been declared using ::max_align_t; ^ Another possible error is: someheader.h:99:13: error: ‘ptrdiff_t’ does not name a type A workaround until libraries get updated is to include <cstddef> or <stddef.h> before any headers from that library.
Diffstat (limited to 'src/system.hh.in')
-rw-r--r--src/system.hh.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/system.hh.in b/src/system.hh.in
index 8f501587..eaee14dc 100644
--- a/src/system.hh.in
+++ b/src/system.hh.in
@@ -156,6 +156,7 @@ typedef std::ostream::pos_type ostream_pos_type;
#include <sys/wait.h>
#endif
+#include <cstddef> /* needed for gcc 4.9 */
#include <gmp.h>
#include <mpfr.h>
#include "utf8.h"