]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/test/toolset_clang_darwin.py
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / test / toolset_clang_darwin.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.txt or copy at
7 # https://www.bfgroup.xyz/b2/LICENSE.txt)
8
9 # validates the clang-darwin toolset using a mock of clang
10
11 from TestToolset import test_toolset
12
13 test_toolset("clang-darwin", "3.9.0", [
14 ["target-os=darwin"],
15 ["target-os=darwin", "release", "strip=on", "linkflags=-v"],
16 ["target-os=darwin", "threading=multi"],
17 ["target-os=darwin", "link=static"],
18 ["target-os=darwin", "link=static", "runtime-link=static"],
19 ["target-os=darwin", "architecture=x86", "address-model=32"],
20 ["target-os=darwin", "cxxstd=latest"]])