aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/boost
diff options
context:
space:
mode:
Diffstat (limited to 'project/boost')
-rw-r--r--project/boost/archive.py16
-rw-r--r--project/boost/build.py4
-rw-r--r--project/boost/toolchain.py119
3 files changed, 61 insertions, 78 deletions
diff --git a/project/boost/archive.py b/project/boost/archive.py
index e4c85e0..5316005 100644
--- a/project/boost/archive.py
+++ b/project/boost/archive.py
@@ -8,9 +8,9 @@ from contextlib import contextmanager
import logging
import os.path
import shutil
-import tempfile
from project.boost.directory import BoostDir
+from project.utils import temp_file
class Archive:
@@ -75,15 +75,7 @@ class TemporaryStorage(ArchiveStorage):
@contextmanager
def write_archive(self, version, contents):
- temp = tempfile.NamedTemporaryFile(prefix=f'boost_{version}_',
- suffix=version.archive_ext,
- dir=self._dir, delete=False)
- with temp as dest:
- path = dest.name
- logging.info('Writing Boost archive: %s', path)
- dest.write(contents)
- try:
+ tmp = temp_file(contents, prefix=f'boost_{version}_',
+ suffix=version.archive_ext, dir=self._dir)
+ with tmp as path:
yield path
- finally:
- logging.info('Removing temporary Boost archive: %s', path)
- os.remove(path)
diff --git a/project/boost/build.py b/project/boost/build.py
index c9081eb..6d2b897 100644
--- a/project/boost/build.py
+++ b/project/boost/build.py
@@ -22,7 +22,7 @@ import sys
import tempfile
from project.boost.directory import BoostDir
-from project.boost.toolchain import detect_toolchain
+from project.boost.toolchain import Toolchain
from project.configuration import Configuration
from project.linkage import Linkage
from project.platform import Platform
@@ -71,7 +71,7 @@ class BuildParameters:
def enum_b2_args(self):
with self._create_build_dir() as build_dir:
for platform in self.platforms:
- with detect_toolchain(platform, mingw=self.mingw) as toolchain:
+ with Toolchain.detect(platform, mingw=self.mingw) as toolchain:
for configuration in self.configurations:
for link, runtime_link in self._linkage_options():
yield self._build_params(build_dir, toolchain,
diff --git a/project/boost/toolchain.py b/project/boost/toolchain.py
index 9cc452b..cacc2c2 100644
--- a/project/boost/toolchain.py
+++ b/project/boost/toolchain.py
@@ -17,9 +17,9 @@ parameter.
import abc
from contextlib import contextmanager
import logging
-import tempfile
import project.os
+from project.utils import temp_file
class Toolchain(abc.ABC):
@@ -30,13 +30,28 @@ class Toolchain(abc.ABC):
def get_b2_args(self):
pass
+ @staticmethod
+ @contextmanager
+ def detect(platform, mingw=False):
+ if mingw:
+ with MinGW.setup(platform) as toolchain:
+ yield toolchain
+ else:
+ yield Native(platform)
-class NativeToolchain(Toolchain):
+ @staticmethod
+ def _format_user_config(tag, compiler, **kwargs):
+ features = (f'<{k}>{v}' for k, v in kwargs.items())
+ features = ' '.join(features)
+ return f'using gcc : {tag} : {compiler} : {features} ;'
+
+
+class Native(Toolchain):
def get_b2_args(self):
return [f'address-model={self.platform.get_address_model()}']
-class MingwToolchain(Toolchain):
+class MinGW(Toolchain):
TAG = 'custom'
def __init__(self, platform, config_path):
@@ -44,65 +59,41 @@ class MingwToolchain(Toolchain):
self.config_path = config_path
def get_b2_args(self):
- return [f'--user-config={self.config_path}', f'toolset=gcc-{MingwToolchain.TAG}']
-
-
-def _native_toolchain(platform):
- return NativeToolchain(platform)
-
-
-def _get_mingw_prefix(platform):
- target_arch = platform.get_address_model()
- if target_arch == 32:
- return 'i686'
- if target_arch == 64:
- return 'x86_64'
- raise RuntimeError(f'unexpected address model: {target_arch}')
-
-
-def _get_mingw_path(platform):
- prefix = _get_mingw_prefix(platform)
- ext = ''
- if project.os.on_windows_like():
- # Boost.Build wants the .exe extension at the end on Cygwin.
- ext = '.exe'
- path = f'{prefix}-w64-mingw32-g++{ext}'
- return path
-
-
-def _format_user_config(tag, compiler, **kwargs):
- features = (f'<{k}>{v}' for k, v in kwargs.items())
- features = ' '.join(features)
- return f'using gcc : {tag} : {compiler} : {features} ;'
-
-
-def _format_mingw_user_config(platform):
- compiler = _get_mingw_path(platform)
- features = {
- 'target-os': 'windows',
- 'address-model': platform.get_address_model(),
- }
- return _format_user_config(MingwToolchain.TAG, compiler, **features)
-
-
-@contextmanager
-def _mingw_toolchain(platform):
- tmp = tempfile.NamedTemporaryFile(mode='w', prefix='mingw_w64_', suffix='.jam')
- with tmp as file:
- config = _format_mingw_user_config(platform)
+ return [f'--user-config={self.config_path}', f'toolset=gcc-{MinGW.TAG}']
+
+ @staticmethod
+ def _get_compiler_prefix(platform):
+ target_arch = platform.get_address_model()
+ if target_arch == 32:
+ return 'i686'
+ if target_arch == 64:
+ return 'x86_64'
+ raise RuntimeError(f'unexpected address model: {target_arch}')
+
+ @staticmethod
+ def _get_compiler_path(platform):
+ prefix = MinGW._get_compiler_prefix(platform)
+ ext = ''
+ if project.os.on_windows_like():
+ # Boost.Build wants the .exe extension at the end on Cygwin.
+ ext = '.exe'
+ path = f'{prefix}-w64-mingw32-g++{ext}'
+ return path
+
+ @staticmethod
+ def _format_mingw_user_config(platform):
+ compiler = MinGW._get_compiler_path(platform)
+ features = {
+ 'target-os': 'windows',
+ 'address-model': platform.get_address_model(),
+ }
+ return Toolchain._format_user_config(MinGW.TAG, compiler, **features)
+
+ @staticmethod
+ @contextmanager
+ def setup(platform):
+ config = MinGW._format_mingw_user_config(platform)
logging.info('Using user config:\n%s', config)
- file.write(config)
- file.flush()
- try:
- yield MingwToolchain(platform, file.name)
- finally:
- logging.info('Removing temporary user config file')
-
-
-@contextmanager
-def detect_toolchain(platform, mingw=False):
- if mingw:
- with _mingw_toolchain(platform) as toolchain:
- yield toolchain
- else:
- yield _native_toolchain(platform)
+ tmp = temp_file(config, mode='w', prefix='mingw_w64_', suffix='.jam')
+ with tmp as path:
+ yield MinGW(platform, path)