From 30bb04845eaa7e7fbe4f542f00139b980db995d6 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 12 Sep 2020 09:13:44 -0500 Subject: [PATCH] Add missing compileflags feature. fixes #653 --- src/tools/features/compileflags-feature.jam | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/tools/features/compileflags-feature.jam diff --git a/src/tools/features/compileflags-feature.jam b/src/tools/features/compileflags-feature.jam new file mode 100644 index 000000000..229bed730 --- /dev/null +++ b/src/tools/features/compileflags-feature.jam @@ -0,0 +1,19 @@ +# Copyright 2020 René Ferdinand Rivera Morell +# 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) + +import feature ; + +#| tag::doc[] + +[[bbv2.builtin.features.compileflags]]`cflags`:: +The value of this feature is passed without modification to the corresponding +tools. The values from the `compileflags` is applied to all compilation of any +language for the tools. + +|# # end::doc[] + +feature.feature compileflags + : + : free ;