From a1cc37d523aaa9ab3a5443349c6c5ca0044a0a40 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 7 Jan 2020 01:48:05 +0300 Subject: boost/build: remove --label Its intention was to use a single stage/ directory for multi-toolchain builds (namely, using Cygwin & VS). It decided it's pretty useless, since the same b2 executable can't be used with both Cygwin & VS. --- boost/build/build.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/boost/build/build.py b/boost/build/build.py index f0d0d1c..02ab9b0 100755 --- a/boost/build/build.py +++ b/boost/build/build.py @@ -305,8 +305,6 @@ class BoostBuild: self.configurations = args.configurations or Configuration.all() self.stage_dir = 'stage' - if args.stage_prefix is not None: - self.stage_dir = os.path.join(self.stage_dir, args.stage_prefix) self.build_dir = args.build_dir self.boost_dir = args.boost_dir @@ -400,10 +398,6 @@ def _parse_args(argv=None): type=_parse_configuration, help='target configuration (e.g. Debug/Release)') - build.add_argument('--label', metavar='LABEL', - dest='stage_prefix', - help="build label (the output directory will be stage/LABEL/.../lib") - build.add_argument('--build', metavar='DIR', dest='build_dir', type=_parse_dir, help='Boost build directory (temporary directory unless specified)') -- cgit v1.2.3