]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/multiprecision/example/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / multiprecision / example / Jamfile.v2
CommitLineData
7c673cae
FG
1# \libs\math\example\jamfile.v2
2# Runs multiprecision examples.
3# Copyright 2014 John Maddock
4# Copyright Paul A. Bristow 2014.
5# Copyright Christpher Kormanyos 2014
6
7# Distributed under the Boost Software License, Version 1.0.
8# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9
10# bring in the rules for testing
11import testing ;
12import modules ;
13import path ;
14import ../../config/checks/config : requires ;
15
16local ntl-path = [ modules.peek : NTL_PATH ] ;
17local gmp_path = [ modules.peek : GMP_PATH ] ;
18local mpfr_path = [ modules.peek : MPFR_PATH ] ;
19local mpfi_path = [ modules.peek : MPFI_PATH ] ;
20local tommath_path = [ modules.peek : TOMMATH_PATH ] ;
21
22project
23 : requirements
24 <include>$(gmp_path)
25 <include>$(gmp_path)/mpfr
26 <include>$(gmp_path)/gmpfrxx
27 <include>$(mpfr_path)
28 <include>$(mpfi_path)
29 <include>$(mpfi_path)/src
30 <include>$(tommath_path)
31 <include>../include
32 <include>../../..
33 <toolset>gcc:<cxxflags>-Wno-missing-braces
34 <toolset>darwin:<cxxflags>-Wno-missing-braces
35 <toolset>acc:<cxxflags>+W2068,2461,2236,4070
36 <toolset>intel:<cxxflags>-Qwd264,239
37 <toolset>msvc:<runtime-link>static
38 <toolset>msvc:<link>static
39 <toolset>msvc:<warnings>all
40 <toolset>msvc:<asynch-exceptions>on
41 <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
42 <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
43 <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
44 <toolset>msvc:<define>_CRT_SECURE_NO_WARNINGS
45 <toolset>msvc:<cxxflags>/wd4996
46 <toolset>msvc:<cxxflags>/wd4512
47 <toolset>msvc:<cxxflags>/wd4610
48 <toolset>msvc:<cxxflags>/wd4510
49 <toolset>msvc:<cxxflags>/wd4127
50 <toolset>msvc:<cxxflags>/wd4701
51 <toolset>msvc:<cxxflags>/wd4127
52 <toolset>msvc:<cxxflags>/wd4305
53 ;
54
55lib gmp : : <search>$(gmp_path) ;
56lib mpfr : : <search>$(gmp_path) <search>$(mpfr_path) <search>$(mpfr_path)/build.vc10/lib/Win32/Debug ;
57lib mpfi : : <search>$(gmp_path) <search>$(mpfr_path) <search>$(mpfr_path)/build.vc10/lib/Win32/Debug <search>$(mpfi_path) <search>$(mpfi_path)/src ;
58lib quadmath ;
59
60if $(tommath_path)
61{
62 lib tommath : [ GLOB $(tommath_path) : *.c ] ;
63 TOMMATH = tommath ;
64}
65else
66{
67 lib tommath : : <search>$(tommath_path) ;
68 TOMMATH = tommath ;
69}
70
71lib no_eh_eg_support : ../test/no_eh_test_support.cpp ;
72
73run cpp_int_snips.cpp no_eh_eg_support ;
74run cpp_int_import_export.cpp no_eh_eg_support ;
75run cpp_bin_float_import_export.cpp no_eh_eg_support ;
76
77run cpp_dec_float_snips.cpp no_eh_eg_support ;
78
79run cpp_bin_float_snips.cpp no_eh_eg_support ;
80
81run debug_adaptor_snips.cpp no_eh_eg_support ;
82run float128_snips.cpp quadmath no_eh_eg_support : : : [ check-target-builds ../config//has_float128 : : <build>no ] ;
83run floating_point_examples.cpp no_eh_eg_support ;
84run gauss_laguerre_quadrature.cpp no_eh_eg_support : : : release [ requires cxx11_lambdas ] ;
85run hypergeometric_luke_algorithms.cpp no_eh_eg_support ../../chrono/build//boost_chrono ../../system/build//boost_system : : : [ requires cxx11_nullptr ] ;
86run integer_examples.cpp no_eh_eg_support ;
87run logged_adaptor.cpp no_eh_eg_support mpfi mpfr gmp : : : [ check-target-builds ../config//has_mpfi : : <build>no ] ;
88run mixed_integer_arithmetic.cpp no_eh_eg_support ;
89run numeric_limits_snips.cpp no_eh_eg_support /boost//test_exec_monitor : : : [ requires cxx11_numeric_limits ] ;
b32b8144 90run random_snips.cpp gmp no_eh_eg_support : : : [ requires cxx11_explicit_conversion_operators ] [ check-target-builds ../config//has_gmp : : <build>no ] ;
7c673cae
FG
91run safe_prime.cpp no_eh_eg_support ;
92
93run gmp_snips.cpp gmp no_eh_eg_support : : : [ check-target-builds ../config//has_gmp : : <build>no ] ;
94run mpfi_snips.cpp mpfi mpfr gmp no_eh_eg_support : : : [ check-target-builds ../config//has_mpfi : : <build>no ] ;
95run mpfr_snips.cpp mpfr gmp no_eh_eg_support : : : [ check-target-builds ../config//has_mpfr : : <build>no ] ;
96run tommath_snips.cpp $(TOMMATH) no_eh_eg_support : : : [ check-target-builds ../config//has_tommath : : <build>no ] ;
97
98
99
100