# Digital Mars C++
# (C) Copyright Christof Meerwald 2003.
# (C) Copyright Aleksey Gurtovoy 2004.
#
# Distributed under the Boost Software License, Version 1.0. (See
# accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
# The following #// line will be used by the regression test table generation
# program as the column heading for HTML tables. Must not include version number.
#//Digital
Mars C++
import feature generators common ;
import toolset : flags ;
feature.extend toolset : dmc ;
rule init ( version ? : command * : options * )
{
local condition = [ common.check-init-parameters dmc : version $(version) ] ;
local command = [ common.get-invocation-command dmc : dmc : $(command) ] ;
command ?= dmc ;
common.handle-options dmc : $(condition) : $(command) : $(options) ;
if $(command)
{
command = [ common.get-absolute-tool-path $(command[-1]) ] ;
}
root = $(command:D) ;
if $(root)
{
flags dmc .root $(condition) : $(root)/bin/ ;
}
else
{
flags dmc .root $(condition) : "" ;
}
}
# Declare generators
generators.register-linker dmc.link : OBJ SEARCHED_LIB STATIC_LIB IMPORT_LIB : EXE : dmc ;
generators.register-linker dmc.link.dll : OBJ SEARCHED_LIB STATIC_LIB IMPORT_LIB : SHARED_LIB IMPORT_LIB : dmc ;
generators.register-archiver dmc.archive : OBJ : STATIC_LIB : dmc ;
generators.register-c-compiler dmc.compile.c++ : CPP : OBJ : dmc ;
generators.register-c-compiler dmc.compile.c : C : OBJ : dmc ;
# Declare flags
# FIXME: what's this 'debug-store'?
#flags dmc.compile OPTIONS on/object : -g ;
flags dmc.compile OPTIONS on : -g ;
flags dmc.link on : -co ;
flags dmc.compile OPTIONS off : -S -o+none ;
flags dmc.compile OPTIONS speed : -o+time ;
flags dmc.compile OPTIONS space : -o+space ;
flags dmc.compile OPTIONS on : -Ae ;
flags dmc.compile OPTIONS on : -Ar ;
# Note that these two options actually imply multithreading support on DMC
# because there is no single-threaded dynamic runtime library. Specifying
# multi would be a bad idea, though, because no option would be
# matched when the build uses the default settings of dynamic
# and single.
flags dmc.compile OPTIONS off/shared : -ND ;
flags dmc.compile OPTIONS on/shared : -ND ;
flags dmc.compile OPTIONS off/static/single : ;
flags dmc.compile OPTIONS on/static/single : ;
flags dmc.compile OPTIONS off/static/multi : -D_MT ;
flags dmc.compile OPTIONS on/static/multi : -D_MT ;
flags dmc.compile OPTIONS : ;
flags dmc.compile.c++ OPTIONS : ;
flags dmc.compile DEFINES : ;
flags dmc.compile INCLUDES : ;
flags dmc.link ;
flags dmc.archive OPTIONS ;
flags dmc LIBPATH ;
flags dmc LIBRARIES ;
flags dmc FINDLIBS ;
flags dmc FINDLIBS ;
# FIXME: what's this?
# flags msvc STDHDRS : $(DMC_ROOT)$(SLASH)include ;
# FIXME: how one action handles both linking of executables and
# shared libraries? Does it work for shared libraries at all?
actions together link bind LIBRARIES
{
"$(.root)"link $(OPTIONS) -delexecutable -noi -implib:"$(<[2])" "$(>)" $(LIBRARIES) , "$(<[1])" , NUL , user32.lib kernel32.lib "$(FINDLIBS:S=.lib)" , "$(<[2]:B).def"
}
actions compile.c++
{
"$(.root)"dmc -c $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -o"$(<)" "$(>)"
}
actions compile.c++
{
"$(.root)"dmc -cpp -c $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -o"$(<)" "$(>)"
}
actions together piecemeal archive
{
"$(.root)"lib $(OPTIONS) -c -n -p128 "$(<)" "$(>)"
}