From 344df6c0a0cacd6530660199537e1d32086bcb18 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 17 Jan 2018 19:06:44 +0200 Subject: [PATCH] Add support for g++ 4.4 to test/Jamfile --- test/Jamfile.v2 | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index e3ca329..8c59ddb 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -25,7 +25,11 @@ project { local result ; - if gcc in $(properties) || clang in $(properties) + if 4.4 in $(properties) + { + result = -std=c++98 ; + } + else if gcc in $(properties) || clang in $(properties) { result = -std=c++03 ; } @@ -41,7 +45,7 @@ project { local result ; - if 4.6 in $(properties) + if 4.4 in $(properties) || 4.6 in $(properties) { result = -std=c++0x ; }