]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/test/toolset-mock/project-config.jam
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / tools / build / test / toolset-mock / project-config.jam
1 # Copyright 2017 Steven Watanabe
2 #
3 # Distributed under the Boost Software License, Version 1.0.
4 # (See accompanying file LICENSE_1_0.txt or copy at
5 # http://www.boost.org/LICENSE_1_0.txt)
6
7 import modules ;
8
9 path-constant here : . ;
10
11 using gcc : 4.8.3 : python $(here)/src/gcc-4.8.3-linux.py : : <target-os>linux ;
12 using gcc : 4.2.1 : python $(here)/src/gcc-4.2.1-darwin.py : : <target-os>darwin ;
13
14 # hard-code this to make the test work on other platforms
15 modules.poke darwin : .host-osx-version : 10.11.0 ;
16 using darwin : 4.2.1 : python $(here)/src/darwin-4.2.1.py
17 : <archiver>$(here)/src/bin/libtool
18 <striper>$(here)/src/bin/strip
19 : <target-os>darwin
20 ;
21
22 using clang-darwin : 3.9.0 : python $(here)/src/clang-3.9.0-darwin.py
23 : <archiver>$(here)/src/bin/ar
24 <ranlib>$(here)/src/bin/ranlib
25 ;
26
27 using clang-linux : 3.9.0 : python $(here)/src/clang-linux-3.9.0.py
28 : <archiver>$(here)/src/bin/ar
29 <ranlib>$(here)/src/bin/ranlib
30 ;
31
32 using clang-vxworks : 4.0.1 : python $(here)/src/clang-vxworks-4.0.1.py
33 : <linker>$(here)/src/bin/ld
34 <archiver>$(here)/src/bin/ar
35 ;
36
37 using intel-darwin : 10.2 : python $(here)/src/intel-darwin-10.2.py
38 : <archiver>$(here)/src/bin/ar
39 <ranlib>$(here)/src/bin/ranlib
40 ;