]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/test/toolset_clang_vxworks.py
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / test / toolset_clang_vxworks.py
CommitLineData
11fdf7f2
TL
1#!/usr/bin/python
2#
3# Copyright 2018 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 clang_vxworks toolset using a mock of clang
10
11from TestToolset import test_toolset
12
13test_toolset("clang-vxworks", "4.0.1", [
14 ["target-os=vxworks"],
15 ["target-os=vxworks", "release", "strip=on", "linkflags=-t"],
16 ["target-os=vxworks", "threading=multi"],
17 ["target-os=vxworks", "link=static"],
18 ["target-os=vxworks", "link=static", "runtime-link=static"],
19 ["target-os=vxworks", "architecture=x86", "address-model=32"],
20 ["target-os=vxworks", "rtti=off", "exception-handling=off"]])