diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/math/minimax/Jamfile.v2 | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/math/minimax/Jamfile.v2')
-rw-r--r-- | src/boost/libs/math/minimax/Jamfile.v2 | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/boost/libs/math/minimax/Jamfile.v2 b/src/boost/libs/math/minimax/Jamfile.v2 new file mode 100644 index 00000000..81790f9a --- /dev/null +++ b/src/boost/libs/math/minimax/Jamfile.v2 @@ -0,0 +1,46 @@ +# Copyright John Maddock 2010 +# Copyright Paul A. Bristow 2018 +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt. +# \math_toolkit\libs\math\minimax\jamfile.v2 +# Runs minimax using multiprecision, (rather than gmp and mpfr) + +# bring in the rules for testing. +import modules ; +import path ; + +project + : requirements + <toolset>gcc:<cxxflags>-Wno-missing-braces + <toolset>darwin:<cxxflags>-Wno-missing-braces + <toolset>acc:<cxxflags>+W2068,2461,2236,4070,4069 + <toolset>intel-win:<cxxflags>-nologo + <toolset>intel-win:<linkflags>-nologo + <toolset>msvc:<warnings>all + <toolset>msvc:<asynch-exceptions>on + <toolset>msvc:<cxxflags>/wd4996 + <toolset>msvc:<cxxflags>/wd4512 + <toolset>msvc:<cxxflags>/wd4610 + <toolset>msvc:<cxxflags>/wd4510 + <toolset>msvc:<cxxflags>/wd4127 + <toolset>msvc:<cxxflags>/wd4701 # needed for lexical cast - temporary. + <link>static + <toolset>borland:<runtime-link>static + <include>../../.. + <define>BOOST_ALL_NO_LIB=1 + <define>BOOST_UBLAS_UNSUPPORTED_COMPILER=0 + <include>. + <include>../include_private + #<include>$(ntl-path)/include + ; + +#lib mpfr : gmp : <name>mpfr ; + +#lib gmp : : <name>gmp ; + +# exe minimax : f.cpp main.cpp gmp mpfr ; +exe minimax : f.cpp main.cpp ; + +install bin : minimax ; + |