]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/test/toolset_gcc.py
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / test / toolset_gcc.py
CommitLineData
11fdf7f2
TL
1#!/usr/bin/python
2#
3# Copyright 2017 Steven Watanabe
4#
5# Distributed under the Boost Software License, Version 1.0.
1e59de90
TL
6# (See accompanying file LICENSE.txt or copy at
7# https://www.bfgroup.xyz/b2/LICENSE.txt)
11fdf7f2
TL
8
9# validates the gcc toolset using a mock of gcc
10
11from TestToolset import test_toolset
12
13test_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
21test_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"]])