summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/test/toolset_clang_linux.py
blob: eed96875fdc42500ffbc0cc3c50f7bc1a5e8415e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python
# coding: utf-8
#
# Copyright 2017 Steven Watanabe
# Copyright 2020 René Ferdinand Rivera Morell
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.txt or copy at
# https://www.bfgroup.xyz/b2/LICENSE.txt)

# validates the clang_linux toolset using a mock of clang

from TestToolset import test_toolset

test_toolset("clang-linux", "3.9.0", [
    ["target-os=linux"],
    ["target-os=linux", "release", "strip=on"],
    ["target-os=linux", "threading=multi"],
    ["target-os=linux", "link=static"],
    ["target-os=linux", "link=static", "runtime-link=static"],
    ["target-os=linux", "architecture=x86", "address-model=32"]])

test_toolset("clang-linux", "3.9.0", [
    ["target-os=windows"],
    ["target-os=windows", "release", "strip=on"],
    ["target-os=windows", "threading=multi"],
    ["target-os=windows", "link=static"],
    ["target-os=windows", "architecture=x86", "address-model=32"]
    ])