Automate process of using gcc5:

* SConstruct will set ABI based on ubuntu flavor
* Script to bring in packages for various ubuntu flavors
* Script to bring in packages for various fedora 22
* Remove unneeded environment variable from travis
* Script to build boost with correct API flags
* `--static` flag to control static linking
This commit is contained in:
seelabs
2015-10-20 19:44:33 -04:00
committed by Nik Bougalis
parent b6cb981a8b
commit ded2a5c076
7 changed files with 228 additions and 38 deletions

View File

@@ -518,8 +518,8 @@ int main (int argc, char** argv)
(__GNUC_MINOR__ * 100) +
__GNUC_PATCHLEVEL__;
static_assert (gccver >= 40801,
"GCC version 4.8.1 or later is required to compile rippled.");
static_assert (gccver >= 50100,
"GCC version 5.1.0 or later is required to compile rippled.");
#endif
static_assert (BOOST_VERSION >= 105700,