Change default boost toolset for linux.
This commit is contained in:
parent
9875664043
commit
5a53e4a2ea
|
@ -28,6 +28,7 @@ CARLA_UE_CONTENT_VERSIONS_FILE_PATH = WORKSPACE_PATH / 'Util' / 'ContentVersions
|
|||
LOGICAL_PROCESSOR_COUNT = psutil.cpu_count(logical = True)
|
||||
DEFAULT_PARALLELISM = LOGICAL_PROCESSOR_COUNT + (2 if LOGICAL_PROCESSOR_COUNT >= 8 else 0)
|
||||
READTHEDOCS_URL_SUFFIX = 'how_to_build_on_windows/\n' if os.name == "nt" else 'build_linux/\n'
|
||||
DEFAULT_BOOST_TOOLSET = 'msvc-14.3' if os.name == 'nt' else 'clang'
|
||||
DEFAULT_ERROR_MESSAGE = (
|
||||
'\n'
|
||||
'Ok, an error ocurred, don\'t panic!\n'
|
||||
|
@ -233,7 +234,7 @@ AddCLIStringOption(
|
|||
'Set the CARLA build path.')
|
||||
AddCLIStringOption(
|
||||
'boost-toolset',
|
||||
'msvc-14.3',
|
||||
DEFAULT_BOOST_TOOLSET,
|
||||
'Set the target boost toolset.')
|
||||
AddCLIStringOption(
|
||||
'ue-path',
|
||||
|
|
Loading…
Reference in New Issue