From 0fab8fd7c5e2064c76ca4491ebd0a78d00619664 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 30 Jun 2017 09:26:54 +0100 Subject: [PATCH] Update example Jamfile to handle older compilers. --- example/Jamfile.v2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index 7c5156f67..2bd3b03de 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -118,9 +118,9 @@ test-suite examples : [ run students_t_two_samples.cpp ] [ run HSO3SO4.cpp ] - [ run root_elliptic_finding.cpp /boost/timer : : : release static ] - [ run root_finding_algorithms.cpp /boost/timer : : : release static ] - [ run root_n_finding_algorithms.cpp /boost/timer : : : release static ] + [ run root_elliptic_finding.cpp /boost/timer : : : release static [ requires cxx11_unified_initialization_syntax cxx11_defaulted_functions ] freebsd:"-lrt" linux:"-lrt -lpthread" ] + [ run root_finding_algorithms.cpp /boost/timer : : : release static [ requires cxx11_hdr_tuple cxx11_unified_initialization_syntax ] freebsd:"-lrt" linux:"-lrt -lpthread" ] + [ run root_n_finding_algorithms.cpp /boost/timer : : : release static [ requires cxx11_unified_initialization_syntax cxx11_defaulted_functions ] freebsd:"-lrt" linux:"-lrt -lpthread" ] [ explicit root_elliptic_finding ] [ explicit root_finding_algorithms ]