/usr/share/boost-build/src/tools
NameSizeModeActions
doxygen/-0755rm
features/-0755rm
generators/-0755rm
types/-0755rm
xsltproc/-0755rm
acc.jam48000644editdlrm
asciidoctor.jam64800644editdlrm
auto-index.jam83240644editdlrm
bison.jam5890644editdlrm
boostbook-config.jam3890644editdlrm
boostbook.jam240560644editdlrm
borland.jam99920644editdlrm
builtin.jam30370644editdlrm
bzip2.jam80660644editdlrm
cast.jam32370644editdlrm
clang-darwin.jam67130644editdlrm
clang-linux.jam99840644editdlrm
clang-vxworks.jam40260644editdlrm
clang-win.jam60940644editdlrm
clang.jam23100644editdlrm
common.jam316790644editdlrm
como-linux.jam35280644editdlrm
como-win.jam42370644editdlrm
como.jam20630644editdlrm
convert.jam19870644editdlrm
cray.jam411280644editdlrm
cw-config.jam12830644editdlrm
cw.jam95490644editdlrm
cygwin.jam4030644editdlrm
darwin.jam221650644editdlrm
diab.jam43070644editdlrm
dmc.jam60940644editdlrm
docutils.jam34440644editdlrm
doxproc.py366210644editdlrm
doxygen-config.jam3880644editdlrm
doxygen.jam247450644editdlrm
embarcadero.jam214870644editdlrm
emscripten.jam37790644editdlrm
flags.jam45700644editdlrm
fop.jam16930644editdlrm
fortran.jam19890644editdlrm
gcc.jam552880644editdlrm
generate.jam33390644editdlrm
gettext.jam76630644editdlrm
gfortran.jam10080644editdlrm
hpfortran.jam9020644editdlrm
hp_cxx.jam80890644editdlrm
ifort.jam14950644editdlrm
intel-darwin.jam97850644editdlrm
intel-linux.jam91930644editdlrm
intel-vxworks.jam70850644editdlrm
intel-win.jam163960644editdlrm
intel.jam26260644editdlrm
lex.jam5590644editdlrm
libjpeg.jam73620644editdlrm
libpng.jam71040644editdlrm
libtiff.jam72080644editdlrm
link.jam150210644editdlrm
lzma.jam32770644editdlrm
make.jam22660644editdlrm
mc.jam13110644editdlrm
message.jam16670644editdlrm
midl.jam53670644editdlrm
mipspro.jam52910644editdlrm
mpi.jam218260644editdlrm
msvc-config.jam3930644editdlrm
msvc.jam846720644editdlrm
notfile.jam16540644editdlrm
openssl.jam36130644editdlrm
package.jam92810644editdlrm
pathscale.jam66290644editdlrm
pch.jam27190644editdlrm
pgi.jam48790644editdlrm
pkg-config.jam134430644editdlrm
python-config.jam8360644editdlrm
python.jam436790644editdlrm
qcc.jam108360644editdlrm
qt.jam5300644editdlrm
qt3.jam68100644editdlrm
qt4.jam239740644editdlrm
qt5.jam265170644editdlrm
quickbook-config.jam12660644editdlrm
quickbook.jam132770644editdlrm
rc.jam53640644editdlrm
sass.jam57020644editdlrm
saxonhe.jam13290644editdlrm
stage.jam285130644editdlrm
stlport.jam118800644editdlrm
sun.jam80540644editdlrm
symlink.jam43510644editdlrm
testing-aux.jam102380644editdlrm
testing.jam278890644editdlrm
unix.jam58470644editdlrm
vacpp.jam57250644editdlrm
vmsdecc.jam201850644editdlrm
whale.jam32530644editdlrm
xlcpp.jam61210644editdlrm
xlf.jam9000644editdlrm
xsltproc-config.jam8380644editdlrm
xsltproc.jam56030644editdlrm
zlib.jam69760644editdlrm
zstd.jam24460644editdlrm
Edit: /usr/share/boost-build/src/tools/borland.jam (9992B)
# Copyright 2005 Dave Abrahams # Copyright 2003 Rene Rivera # Copyright 2003, 2004, 2005 Vladimir Prus # Copyright (c) 2020 Edward Diener # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) #| tag::doc[] [[bbv2.reference.tools.compiler.borland]] = Borland C++ Compiler The `borland` module supports the 32-bit command line C++ compilers running on Microsoft Windows. This is the bcc32 executable for all versions of Borland C++ and C++ Builder, as well as the command line compatible compiler bcc32c on later versions of C++ Builder. The module is initialized using the following syntax: ---- using borland : [version] : [c++-compile-command] : [compiler options] ; ---- This statement may be repeated several times, if you want to configure several versions of the compiler. If the command is not specified, Boost.Build will search for a binary named `bcc32` in PATH. The following options can be provided, using _`option-value syntax`_: `cflags`:: Specifies additional compiler flags that will be used when compiling C sources. `cxxflags`:: Specifies additional compiler flags that will be used when compiling C++ sources. `compileflags`:: Specifies additional compiler flags that will be used when compiling both C and C++ sources. `linkflags`:: Specifies additional command line options that will be passed to the linker. `user-interface`:: Specifies the user interface for applications. Valid choices are `console` for a console applicatiuon and `gui` for a Windows application. |# # end::doc[] # Support for the Borland's command line compiler import property ; import generators ; import os ; import toolset : flags ; import feature : get-values ; import type ; import common ; import version ; feature.extend toolset : borland ; rule init ( version ? : command * : options * ) { local condition = [ common.check-init-parameters borland : version $(version) ] ; local command = [ common.get-invocation-command borland : bcc32.exe : $(command) ] ; common.handle-options borland : $(condition) : $(command) : $(options) ; local just_bcc32 = [ MATCH ".*(bcc32)([^a-z0-9]|$)" : $(command:L) ] ; if $(command) { command = [ common.get-absolute-tool-path $(command[-1]) ] ; } root = $(command:D) ; flags borland.compile STDHDRS $(condition) : $(root)/include/ ; flags borland.link STDLIBPATH $(condition) : $(root)/lib ; flags borland.link RUN_PATH $(condition) : $(root)/bin ; flags borland .root $(condition) : $(root)/bin/ ; local jv ; if $(version) { jv = [ MATCH "^([0-9.]+)" : $(version) ] ; } if ! $(jv) || [ version.version-less [ version-split $(jv) ] : 6 30 ] { init-earlier-releases $(condition) ; } else { init-later-releases $(condition) ; } if $(just_bcc32) && ( $(just_bcc32[1]) = bcc32 ) { flags borland.compile OPTIONS $(condition) : -g255 -Vx- -Ve- -b- ; } } # Splits a version in its form of n[.n][.n] into n n n etc. # local rule version-split ( v ) { return [ SPLIT_BY_CHARACTERS $(v) : . ] ; } local rule init-earlier-releases ( condition ) { # Deal with various runtime configs... # This should be not for DLL flags borland OPTIONS $(condition)/console : -tWC ; # -tWR sets -tW as well, so we turn it off here and then turn it # on again later if we need it: flags borland OPTIONS $(condition)/shared : -tWR -tWC ; flags borland OPTIONS $(condition)/LIB/shared : -tWD ; # Hmm.. not sure what's going on here. flags borland OPTIONS $(condition) : -WM- ; flags borland OPTIONS $(condition)/multi : -tWM ; flags borland.link OPTIONS $(condition)/shared : -tWD ; } local rule init-later-releases ( condition ) { # Deal with various runtime configs... # This should be not for DLL flags borland OPTIONS $(condition)/console : -tC ; flags borland OPTIONS $(condition)/shared : -tR ; flags borland OPTIONS $(condition)/LIB/shared : -tD ; flags borland OPTIONS $(condition)/EXE : -tC ; flags borland OPTIONS $(condition)/multi : -tM ; flags borland.link.dll OPTIONS $(condition)/shared : -tD ; } # A borland-specific target type type.register BORLAND.TDS : tds ; # Declare generators generators.register-linker borland.link : OBJ SEARCHED_LIB STATIC_LIB IMPORT_LIB : EXE : borland ; generators.register-linker borland.link.dll : OBJ SEARCHED_LIB STATIC_LIB IMPORT_LIB : SHARED_LIB IMPORT_LIB : borland ; generators.register-archiver borland.archive : OBJ : STATIC_LIB : borland ; generators.register-c-compiler borland.compile.c++ : CPP : OBJ : borland ; generators.register-c-compiler borland.compile.c : C : OBJ : borland ; generators.register-standard borland.asm : ASM : OBJ : borland ; # Declare flags flags borland.compile OPTIONS on : -v ; flags borland.link OPTIONS on : -v ; flags borland.compile OPTIONS off : -Od ; flags borland.compile OPTIONS speed : -O2 ; flags borland.compile OPTIONS space : -O1 ; if $(.BORLAND_HAS_FIXED_INLINING_BUGS) { flags borland CFLAGS off : -vi- ; flags borland CFLAGS on : -vi -w-inl ; flags borland CFLAGS full : -vi -w-inl ; } else { flags borland CFLAGS : -vi- ; } flags borland.compile OPTIONS off : -w- ; flags borland.compile OPTIONS all : -w ; flags borland.compile OPTIONS extra : -w ; flags borland.compile OPTIONS pedantic : -w ; flags borland.compile OPTIONS on : -w! ; flags borland OPTIONS gui : -tW ; flags borland.compile OPTIONS ; flags borland.compile.c++ OPTIONS ; flags borland.compile DEFINES ; flags borland.compile INCLUDES ; flags borland NEED_IMPLIB LIB/shared : "" ; # # for C++ compiles the following options are turned on by default: # # -j5 stops after 5 errors # -g255 allow an unlimited number of warnings # -q no banner # -c compile to object # -P C++ code regardless of file extension # -a8 8 byte alignment, this option is on in the IDE by default # and effects binary compatibility. # # -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I"$(STDHDRS)" -o"$(<)" "$(>)" actions compile.c++ { "$(CONFIG_COMMAND)" -j5 -q -c -P -a8 $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -I"$(STDHDRS)" -o"$(<)" "$(>)" } # For C, we don't pass -P flag actions compile.c { "$(CONFIG_COMMAND)" -j5 -q -c -a8 $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -I"$(STDHDRS)" -o"$(<)" "$(>)" } # Declare flags and action for linking flags borland.link OPTIONS on : -v ; flags borland.link LIBRARY_PATH ; flags borland.link FINDLIBS_ST ; flags borland.link FINDLIBS_SA ; flags borland.link LIBRARIES ; flags borland.link OPTIONS ; flags borland.link LIBRARY_PATH_OPTION borland : -L : unchecked ; flags borland.link LIBRARY_OPTION borland : "" : unchecked ; # bcc32 needs to have ilink32 in the path in order to invoke it, so explicitly # specifying $(BCC_TOOL_PATH)bcc32 doesn't help. You need to add # $(BCC_TOOL_PATH) to the path # The NEED_IMPLIB variable controls whether we need to invoke implib. flags borland.archive AROPTIONS ; # Declare action for archives. We don't use response file # since it's hard to get "+-" there. # The /P256 increases 'page' size -- with too low # values tlib fails when building large applications. # CONSIDER: don't know what 'together' is for... actions updated together piecemeal archive { $(.set-path)$(.root:W)$(.old-path) tlib $(AROPTIONS) /P256 /u /a /C "$(<:W)" +-"$(>:W)" } if [ os.name ] = CYGWIN { .set-path = "cmd /S /C set \"PATH=" ; .old-path = ";%PATH%\" \"&&\"" ; # Couldn't get TLIB to stop being confused about pathnames # containing dashes (it seemed to treat them as option separators # when passed through from bash), so we explicitly write the # command into a .bat file and execute that. TLIB is also finicky # about pathname style! Forward slashes, too, are treated as # options. actions updated together piecemeal archive { chdir $(<:D) echo +-$(>:BS) > $(<:BS).rsp $(.set-path)$(.root)$(.old-path) "tlib.exe" $(AROPTIONS) /P256 /C $(<:BS) @$(<:BS).rsp && $(RM) $(<:BS).rsp } } else if [ os.name ] = NT { .set-path = "set \"PATH=" ; .old-path = ";%PATH%\" " ; } else { .set-path = "PATH=\"" ; .old-path = "\":$PATH export PATH " ; } RM = [ common.rm-command ] ; nl = " " ; actions link { $(.set-path)$(.root:W)$(.old-path) "$(CONFIG_COMMAND)" -v -q $(OPTIONS) -L"$(LIBRARY_PATH:W)" -L"$(STDLIBPATH:W)" -e"$(<[1]:W)" @"@($(<[1]:W).rsp:E=$(nl)"$(>)" $(nl)$(LIBRARIES) $(nl)"$(LIBRARY_OPTION)$(FINDLIBS_ST:S=.lib)" $(nl)"$(LIBRARY_OPTION)$(FINDLIBS_SA:S=.lib)")" } actions link.dll bind LIBRARIES RSP { $(.set-path)$(.root:W)$(.old-path) "$(CONFIG_COMMAND)" -v -q $(OPTIONS) -L"$(LIBRARY_PATH:W)" -L"$(STDLIBPATH:W)" -e"$(<[1]:W)" @"@($(<[1]:W).rsp:E=$(nl)"$(>)" $(nl)$(LIBRARIES) $(nl)"$(LIBRARY_OPTION)$(FINDLIBS_ST:S=.lib)" $(nl)"$(LIBRARY_OPTION)$(FINDLIBS_SA:S=.lib)")" && "$(.root)implib" "$(<[2]:W)" "$(<[1]:W)" } # It seems impossible to specify output file with directory when compiling # asm files using bcc32, so use tasm32 directly. # /ml makes all symbol names case-sensitive actions asm { $(.set-path)$(.root:W)$(.old-path) tasm32.exe /ml "$(>)" "$(<)" }