]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/test/toolset_gcc.py
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / tools / build / test / toolset_gcc.py
1 #!/usr/bin/python
2 #
3 # Copyright 2017 Steven Watanabe
4 #
5 # Distributed under the Boost Software License, Version 1.0.
6 # (See accompanying file LICENSE_1_0.txt or copy at
7 # http://www.boost.org/LICENSE_1_0.txt)
8
9 # validates the gcc toolset using a mock of gcc
10
11 from TestToolset import test_toolset
12
13 test_toolset("gcc", "4.8.3", [
14 ["target-os=linux"],
15 ["target-os=linux", "release"],
16 ["target-os=linux", "threading=multi"],
17 ["target-os=linux", "link=static"],
18 ["target-os=linux", "link=static", "runtime-link=static"],
19 ["target-os=linux", "cxxstd=latest"]])
20
21 test_toolset("gcc", "4.2.1", [
22 ["target-os=darwin"],
23 ["target-os=darwin", "release"],
24 ["target-os=darwin", "threading=multi"],
25 ["target-os=darwin", "link=static"],
26 ["target-os=darwin", "link=static", "runtime-link=static"]])