]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/test/toolset_darwin.py
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / test / toolset_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 darwin toolset using a mock of gcc
10
11 from TestToolset import test_toolset
12
13 test_toolset("darwin", "4.2.1", [
14 ["target-os=darwin"],
15 ["target-os=darwin", "release", "strip=on"],
16 ["target-os=darwin", "threading=multi"],
17 ["target-os=darwin", "link=static"],
18 ["target-os=darwin", "link=static", "runtime-link=static"],
19 # Address-model handling is quite broken
20 # ["target-os=darwin", "architecture=x86", "address-model=32"]
21 ])