2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00
Files
build/test/toolset_clang_linux.py
2021-02-20 21:35:16 -06:00

30 lines
970 B
Python

#!/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"]
])