]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/src/tools/emscripten.jam
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / tools / build / src / tools / emscripten.jam
CommitLineData
7c673cae
FG
1# Copyright Rene Rivera 2016
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt
4# or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6import feature ;
7import os ;
8import toolset ;
9import common ;
10import gcc ;
11import type ;
12
13feature.feature embind : off on : propagated ;
14feature.feature closure : off on full : propagated ;
15feature.feature link-optimization : off on full : propagated ;
16
17rule init ( version ? : command * : options * )
18{
19 command = [ common.get-invocation-command emscripten
20 : emcc
21 : $(command) ] ;
22
23 # Determine the version
24 local command-string = $(command:J=" ") ;
25 if $(command)
26 {
27 version ?= [ MATCH "([0-9.]+)"
28 : [ SHELL "$(command-string) --version" ] ] ;
29 }
30
31 local condition = [ common.check-init-parameters emscripten
32 : version $(version) ] ;
33
34 common.handle-options emscripten : $(condition) : $(command) : $(options) ;
35}
36
37feature.extend toolset : emscripten ;
38
39toolset.inherit-generators emscripten <toolset>emscripten
40 : gcc
41 : gcc.mingw.link gcc.mingw.link.dll gcc.compile.c.pch gcc.compile.c++.pch
42 ;
43toolset.inherit-rules emscripten : gcc ;
44toolset.inherit-flags emscripten : gcc
45 :
46 <optimization>off <optimization>speed <optimization>space
47 <profiling>off <profiling>on
48 <inlining>off <inlining>on <inlining>full
49 <warnings>off <warnings>all <warnings>on
50 <warnings-as-errors>off <warnings-as-errors>on
51 <debug-symbols>off <debug-symbols>on
52 <rtti>off <rtti>on
53 ;
54
55type.set-generated-target-suffix EXE : <toolset>emscripten : "js" ;
56type.set-generated-target-suffix OBJ : <toolset>emscripten : "bc" ;
57type.set-generated-target-suffix STATIC_LIB : <toolset>emscripten : "bc" ;
58
59toolset.flags emscripten.compile OPTIONS <flags> ;
60toolset.flags emscripten.compile OPTIONS <cflags> ;
61toolset.flags emscripten.compile.c++ OPTIONS <cxxflags> ;
62
63toolset.flags emscripten.compile OPTIONS <optimization>off : -O0 ;
64toolset.flags emscripten.compile OPTIONS <optimization>speed : -O3 ;
65toolset.flags emscripten.compile OPTIONS <optimization>space : -Oz ;
66toolset.flags emscripten.link OPTIONS <optimization>off : -O0 ;
67toolset.flags emscripten.link OPTIONS <optimization>speed : -O3 ;
68toolset.flags emscripten.link OPTIONS <optimization>space : -O3 ;
69
70toolset.flags emscripten.compile OPTIONS <profiling>on : --profiling-funcs ;
71
72toolset.flags emscripten.compile OPTIONS <inlining>off : -fno-inline ;
73toolset.flags emscripten.compile OPTIONS <inlining>on : -Wno-inline ;
74toolset.flags emscripten.compile OPTIONS <inlining>full : -Wno-inline ;
75
76toolset.flags emscripten.compile OPTIONS <warnings>off : -w ;
77toolset.flags emscripten.compile OPTIONS <warnings>on : -Wall ;
78toolset.flags emscripten.compile OPTIONS <warnings>all : -Wall -pedantic ;
79toolset.flags emscripten.compile OPTIONS <warnings-as-errors>on : -Werror ;
80
81toolset.flags emscripten OPTIONS <debug-symbols>off : -g0 ;
82toolset.flags emscripten OPTIONS <debug-symbols>on : -g4 -s DEMANGLE_SUPPORT=1 ;
83toolset.flags emscripten OPTIONS <rtti>off : -fno-rtti ;
84
85toolset.flags emscripten.link OPTIONS <embind>on : --bind ;
86toolset.flags emscripten.link OPTIONS <closure>on : --closure 1 ;
87toolset.flags emscripten.link OPTIONS <closure>full : --closure 2 ;
88toolset.flags emscripten.link OPTIONS <link-optimization>off : --llvm-lto 0 ;
89toolset.flags emscripten.link OPTIONS <link-optimization>on : --llvm-lto 1 ;
90toolset.flags emscripten.link OPTIONS <link-optimization>full : --llvm-lto 3 ;
91
92actions compile.c
93{
94 "$(CONFIG_COMMAND)" -x c $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"
95}
96
97actions compile.c++
98{
99 "$(CONFIG_COMMAND)" -x c++ $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"
100}
101
102actions archive
103{
104 "$(CONFIG_COMMAND)" $(AROPTIONS) -o "$(<)" "$(>)"
105}
106
107toolset.flags emscripten.link USER_OPTIONS <linkflags> ;
108
109actions link bind LIBRARIES
110{
111 "$(CONFIG_COMMAND)" $(USER_OPTIONS) -L"$(LINKPATH)" -o "$(<)" "$(>)" "$(LIBRARIES)" $(START-GROUP) $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST) $(FINDLIBS-SA-PFX) -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS)
112}