aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--appveyor.yml3
-rwxr-xr-xboost/build/build.py84
-rw-r--r--boost/build/ci/appveyor.py4
-rwxr-xr-xboost/build/ci/travis.py4
4 files changed, 68 insertions, 27 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 3218224..ce3aeeb 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -54,7 +54,6 @@ build_script:
--platform x86
--link static
-- ./boost_1_58_0
- runtime-link=static
--with-filesystem --with-program_options
- dir /a-D /S /B boost_1_58_0\stage
@@ -96,7 +95,7 @@ build_script:
- echo Boost 1.65.0
- - '"%python_exe%" ./boost/build/ci/appveyor.py --link static -- runtime-link=static --with-filesystem --with-program_options'
+ - '"%python_exe%" ./boost/build/ci/appveyor.py --link static -- --with-filesystem --with-program_options'
- dir /a-D /S /B C:\boost_1_65_0\stage
- >-
diff --git a/boost/build/build.py b/boost/build/build.py
index 7102c3f..59f6f07 100755
--- a/boost/build/build.py
+++ b/boost/build/build.py
@@ -47,6 +47,10 @@ def _on_windows():
return platform.system() == 'Windows'
+def _on_linux():
+ return not _on_windows()
+
+
def _run_executable(cmd_line):
logging.info('Running executable: %s', cmd_line)
return subprocess.run(cmd_line, check=True)
@@ -323,6 +327,7 @@ class BuildParameters:
self.platforms = args.platforms or Platform.all()
self.configurations = args.configurations or Configuration.all()
self.link = args.link or Linkage.all()
+ self.runtime_link = args.runtime_link
self.stage_dir = 'stage'
@@ -334,20 +339,21 @@ class BuildParameters:
def enum_b2_args(self):
with self._create_build_dir() as build_dir:
for platform in self.platforms:
- platform_params = [f'--build-dir={build_dir}']
- platform_params.append(self._address_model(platform))
- platform_params.append(self._linkage())
- platform_params += self.b2_args
- if _on_windows():
- platform_params.append(self._windows_stagedir(platform))
- platform_params.append(self._windows_variant(self.configurations))
- yield platform_params
- else:
- for configuration in self.configurations:
- variant_params = list(platform_params)
- variant_params.append(self._unix_stagedir(platform, configuration))
- variant_params.append(self._unix_variant(configuration))
- yield variant_params
+ for configuration in self.configurations:
+ for link, runtime_link in self._linkage_options():
+ yield self._build_params(build_dir, platform, configuration, link, runtime_link)
+
+ def _linkage_options(self):
+ for link in self.link:
+ runtime_link = self.runtime_link
+ if runtime_link is Linkage.STATIC:
+ if link is Linkage.SHARED:
+ logging.warning("Cannot link the runtime statically to a dynamic library, going to link dynamically")
+ runtime_link = Linkage.SHARED
+ elif _on_linux():
+ logging.warning("Cannot link to the GNU C Library (which is assumed) statically, going to link dynamically")
+ runtime_link = Linkage.SHARED
+ yield link, runtime_link
@contextmanager
def _create_build_dir(self):
@@ -364,27 +370,50 @@ class BuildParameters:
logging.info('Removing build directory: %s', build_dir)
return
- def _linkage(self):
- link = ','.join(map(str, self.link))
- return f'link={link}'
+ def _build_params(self, build_dir, platform, configuration, link, runtime_link):
+ params = []
+ params.append(self._build_dir(build_dir))
+ params.append(self._stagedir(platform, configuration))
+ params.append(self._link(link))
+ params.append(self._runtime_link(link))
+ params.append(self._address_model(platform))
+ params.append(self._variant(configuration))
+ params += self.b2_args
+ return params
@staticmethod
- def _address_model(platform):
- return f'address-model={platform.get_address_model()}'
+ def _build_dir(build_dir):
+ return f'--build-dir={build_dir}'
+
+ def _stagedir(self, platform, configuration):
+ if _on_windows():
+ return self._windows_stagedir(platform)
+ else:
+ return self._unix_stagedir(platform, configuration)
def _windows_stagedir(self, platform):
- return f'--stagedir={os.path.join(self.stage_dir, str(platform))}'
+ platform = str(platform)
+ return f'--stagedir={os.path.join(self.stage_dir, platform)}'
def _unix_stagedir(self, platform, configuration):
- return f'--stagedir={os.path.join(self.stage_dir, str(platform), str(configuration))}'
+ platform = str(platform)
+ configuration = str(configuration)
+ return f'--stagedir={os.path.join(self.stage_dir, platform, configuration)}'
@staticmethod
- def _windows_variant(configurations):
- variant = ','.join((str(config).lower() for config in configurations))
- return f'variant={variant}'
+ def _link(link):
+ return f'link={link}'
+
+ @staticmethod
+ def _runtime_link(runtime_link):
+ return f'runtime-link={runtime_link}'
+
+ @staticmethod
+ def _address_model(platform):
+ return f'address-model={platform.get_address_model()}'
@staticmethod
- def _unix_variant(configuration):
+ def _variant(configuration):
return f'variant={str(configuration).lower()}'
@@ -431,6 +460,11 @@ def _parse_args(argv=None):
nargs='*', default=[],
type=_parse_linkage,
help='how the libraries are linked (i.e. static/shared)')
+ # This is used to omit runtime-link=static I'd have to otherwise use a lot,
+ # plus the script validates the link= and runtime-link= combinations.
+ build.add_argument('--runtime-link', metavar='LINKAGE',
+ type=_parse_linkage, default=Linkage.STATIC,
+ help='how the libraries link to the runtime')
build.add_argument('--build', metavar='DIR', dest='build_dir',
type=_parse_dir,
diff --git a/boost/build/ci/appveyor.py b/boost/build/ci/appveyor.py
index e6a330d..86488aa 100644
--- a/boost/build/ci/appveyor.py
+++ b/boost/build/ci/appveyor.py
@@ -58,6 +58,8 @@ def _parse_args(argv=None):
parser = argparse.ArgumentParser()
parser.add_argument('--link', metavar='LINKAGE', nargs='*',
help='how the libraries are linked (i.e. static/shared)')
+ parser.add_argument('--runtime-link', metavar='LINKAGE',
+ help='how the libraries link to the runtime')
parser.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[],
help='additional b2 arguments, to be passed verbatim')
return parser.parse_args(argv)
@@ -88,6 +90,8 @@ def build_appveyor(argv=None):
if args.link is not None:
appveyor_argv.append('--link')
appveyor_argv += args.link
+ if args.runtime_link is not None:
+ appveyor_argv += ['--runtime-link', args.runtime_link]
appveyor_argv += [
'--', version.dir_path(_get_build_dir()),
]
diff --git a/boost/build/ci/travis.py b/boost/build/ci/travis.py
index 74ba29f..1c65cc9 100755
--- a/boost/build/ci/travis.py
+++ b/boost/build/ci/travis.py
@@ -56,6 +56,8 @@ def _parse_args(argv=None):
parser = argparse.ArgumentParser()
parser.add_argument('--link', metavar='LINKAGE', nargs='*',
help='how the libraries are linked (i.e. static/shared)')
+ parser.add_argument('--runtime-link', metavar='LINKAGE',
+ help='how the libraries link to the runtime')
parser.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[],
help='additional b2 arguments, to be passed verbatim')
return parser.parse_args(argv)
@@ -86,6 +88,8 @@ def build_travis(argv=None):
if args.link is not None:
travis_argv.append('--link')
travis_argv += args.link
+ if args.runtime_link is not None:
+ appveyor_argv += ['--runtime-link', args.runtime_link]
travis_argv += [
'--', version.dir_path(_get_build_dir()),
]