2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00
Files
build/v2/tools/builtin.jam
2002-07-11 10:01:53 +00:00

22 lines
772 B
Plaintext

# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and
# distribute this software is granted provided this copyright notice appears in
# all copies. This software is provided "as is" without express or implied
# warranty, and with no claim as to its suitability for any purpose.
# Defines standard features and rules.
import feature : feature compose ;
feature toolset : gcc : implicit ;
feature optimization : off on ;
feature threading : single multi : link-incompatible ;
feature rtti : on off : link-incompatible ;
feature define : : free ;
feature "include" : : free ;
feature variant : debug release : implicit composite ;
compose <variant>debug : <optimization>off <rtti>on ;
compose <variant>release : <optimization>on <rtti>on ;