forked from catboost/catboost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_native.py
executable file
·709 lines (601 loc) · 28.7 KB
/
build_native.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
#!/usr/bin/env python3
import argparse
import copy
import logging
import os
import platform
import subprocess
import sys
import tempfile
from typing import Dict
if sys.version_info < (3, 8):
import pipes
else:
import shlex
MSVS_TO_DEFAULT_MSVC_TOOLSET = {
'2019': '14.28.29333',
'2022': '14.29.30133'
}
class Target(object):
def __init__(self, catboost_component, need_pic, macos_binaries_paths):
self.catboost_component = catboost_component
self.need_pic = need_pic
self.macos_binaries_paths = macos_binaries_paths # needed for lipo
class Targets(object):
catboost = {
'catboost': Target('app', need_pic=False, macos_binaries_paths=['catboost/app/catboost']),
'catboostmodel_static':
Target(
'libs',
need_pic=False,
macos_binaries_paths=[
f'catboost/libs/model_interface/static/libcatboostmodel_static{suff}.a' for suff in ['', '.global']
]
),
'_hnsw': Target('python-package', need_pic=True, macos_binaries_paths=['library/python/hnsw/hnsw/lib_hnsw.dylib']),
'_catboost': Target('python-package', need_pic=True, macos_binaries_paths=['catboost/python-package/catboost/lib_catboost.dylib']),
'catboostr': Target('R-package', need_pic=True, macos_binaries_paths=['catboost/R-package/src/libcatboostr.dylib']),
'catboostmodel': Target('libs', need_pic=True, macos_binaries_paths=['catboost/libs/model_interface/libcatboostmodel.dylib']),
'catboost_train_interface': Target('libs', need_pic=True, macos_binaries_paths=['catboost/libs/train_interface/libcatboost.dylib']),
'catboost4j-prediction': Target('jvm-packages', need_pic=True, macos_binaries_paths=['catboost/jvm-packages/catboost4j-prediction/src/native_impl/libcatboost4j-prediction.dylib']),
'catboost4j-spark-impl': Target('spark', need_pic=True, macos_binaries_paths=['catboost/spark/catboost4j-spark/core/src/native_impl/libcatboost4j-spark-impl.dylib']),
'catboost4j-spark-impl-cpp': Target('spark', need_pic=True, macos_binaries_paths=['catboost/spark/catboost4j-spark/core/src/native_impl/libcatboost4j-spark-impl.dylib']),
}
tools = [
'archiver',
'cpp_styleguide',
'enum_parser',
'flatc',
'protoc',
'rescompiler',
'triecompiler'
]
test_tools = {
'limited_precision_dsv_diff': Target(None, need_pic=False, macos_binaries_paths=['catboost/tools/limited_precision_dsv_diff/limited_precision_dsv_diff']),
'limited_precision_json_diff': Target(None, need_pic=False, macos_binaries_paths=['catboost/tools/limited_precision_json_diff/limited_precision_json_diff']),
'model_comparator': Target(None, need_pic=False, macos_binaries_paths=['catboost/tools/model_comparator/model_comparator']),
}
class Option(object):
def __init__(self, description, required=False, default=None, opt_type=str):
self.description = description
self.required = required
if required and (default is not None):
raise RuntimeError("Required option shouldn't have default specified")
self.default = default
self.opt_type = opt_type
class Opts(object):
known_opts = {
'dry_run': Option('Only print, not execute commands', default=False, opt_type=bool),
'verbose': Option('Verbose output for CMake and Ninja', default=False, opt_type=bool),
'build_root_dir': Option('CMake build dir (-B)', required=True),
'build_type': Option('build type (Debug,Release,RelWithDebInfo,MinSizeRel)', default='Release'),
'rebuild': Option('Rebuild targets from scratch', default=False, opt_type=bool),
'targets':
Option(
f'List of CMake targets to build (,-separated). Note: you cannot mix targets that require PIC and non-PIC targets here',
required=True,
opt_type=list
),
'cmake_build_toolchain': Option(
'Custom CMake toolchain path for building CatBoost tools instead of one of preselected'
+ ' (used only in cross-compilation)'
),
'cmake_target_toolchain': Option(
'Custom CMake toolchain path for target platform instead of one of preselected\n'
+ ' (used even in default case when no explicit target_platform is specified)'
),
'conan_build_profile': Option('Custom Conan build profile instead of default'),
'conan_host_profile': Option('Custom Conan host profile instead of one of preselected'),
'msvs_installation_path':
Option('Microsoft Visual Studio installation path (default is "{Program Files}\\Microsoft Visual Studio\\")'
),
'msvs_version': Option('Microsoft Visual Studio version (like "2019", "2022")', default='2022'),
'msvc_toolset': Option(
'Microsoft Visual C++ Toolset version to use'
+ f'(default for Visual Studio 2019 is "{MSVS_TO_DEFAULT_MSVC_TOOLSET["2019"]}",'
+ f' for Visual Studio 2022 is "{MSVS_TO_DEFAULT_MSVC_TOOLSET["2022"]}")'
),
'macosx_version_min': Option('Minimal macOS version to target', default='11.0'),
'have_cuda': Option('Enable CUDA support', default=False, opt_type=bool),
'cuda_root_dir': Option('CUDA root dir (taken from CUDA_PATH or CUDA_ROOT by default)'),
'cuda_runtime_library': Option('CMAKE_CUDA_RUNTIME_LIBRARY for CMake', default='Static'),
'android_ndk_root_dir': Option('Path to Android NDK root'),
'cmake_extra_args': Option(
'Extra args for CMake (,-separated), \n'
+ 'in case of cross-compilation used only for target platform, not for building tools',
default=[],
opt_type=list
),
'parallel_build_jobs':
Option('Number of parallel build jobs (default is the number of parallel threads supported by CPU)', opt_type=int),
'target_platform':
Option(
'Target platform to build for (like "linux-aarch64"), same as host platform by default'
),
'macos_universal_binaries': Option(
"Build macOS universal binaries (don't specify target_platform together with this flag)",
default=False,
opt_type=bool
),
'native_built_tools_root_dir':
Option('Path to tools from CatBoost repository built for build platform (useful only for cross-compilation)')
}
def __init__(self, **kwargs):
for key in kwargs:
if key not in Opts.known_opts:
raise RuntimeError(f'Unknown parameter for Opts: {key}')
setattr(self, key, kwargs[key])
for key, option in Opts.known_opts.items():
if not hasattr(self, key):
if option.required:
raise RuntimeError(f'Required option {key} not specified')
setattr(self, key, option.default)
class PythonDevPaths:
def __init__(self, include_path:str, library_path:str, numpy_include_path:str):
self.include_path = include_path
self.library_path = library_path
self.numpy_include_path = numpy_include_path
def prepend_paths(self, path_prefix: str):
return PythonDevPaths(
os.path.join(path_prefix, self.include_path),
os.path.join(path_prefix, self.library_path),
os.path.join(path_prefix, self.numpy_include_path)
)
def add_to_cmake_args(self, cmake_args):
cmake_args += [
f'-DPython3_INCLUDE_DIR={self.include_path}',
f'-DPython3_LIBRARY={self.library_path}',
f'-DPython3_NumPy_INCLUDE_DIR={self.numpy_include_path}',
]
def get_host_platform():
arch = platform.machine()
if arch == 'AMD64':
arch = 'x86_64'
return f'{platform.system().lower()}-{arch}'
class CmdRunner(object):
def __init__(self, dry_run=False):
self.dry_run = dry_run
@staticmethod
def shlex_join(cmd):
if sys.version_info >= (3, 8):
return shlex.join(cmd)
else:
return ' '.join(
pipes.quote(part)
for part in cmd
)
def run(self, cmd, run_even_with_dry_run=False, **subprocess_run_kwargs):
if 'shell' in subprocess_run_kwargs:
printed_cmd = cmd
else:
printed_cmd = CmdRunner.shlex_join(cmd)
logging.info(f'Running "{printed_cmd}"')
if run_even_with_dry_run or (not self.dry_run):
subprocess.run(cmd, check=True, **subprocess_run_kwargs)
def get_source_root_dir():
return os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
def mkdir_if_not_exists(dir, verbose, dry_run):
if verbose:
logging.info(f'create directory {dir}')
if not dry_run:
os.makedirs(dir, exist_ok=True)
def lipo(opts : Opts, cmd_runner: CmdRunner):
all_targets_specs = {**Targets.catboost, **Targets.test_tools}
for target in opts.targets:
for target_binary_sub_path in all_targets_specs[target].macos_binaries_paths:
dst_path = os.path.join(opts.build_root_dir, target_binary_sub_path)
mkdir_if_not_exists(os.path.dirname(dst_path), opts.verbose, opts.dry_run)
cmd = ['lipo', '-create', '-output', dst_path]
for platform_subdir in ['darwin-x86_64', 'darwin-arm64']:
cmd += [os.path.join(opts.build_root_dir, platform_subdir, target_binary_sub_path)]
cmd_runner.run(cmd)
def build_macos_universal_binaries(
opts: Opts,
cmake_platform_to_root_path:Dict[str,str],
cmake_platform_to_python_dev_paths:Dict[str,PythonDevPaths],
cmd_runner: CmdRunner):
host_platform = get_host_platform()
if host_platform == 'darwin-x86_64':
cross_build_platform = 'darwin-arm64'
elif host_platform == 'darwin-arm64':
cross_build_platform = 'darwin-x86_64'
else:
raise RuntimeError('Building macOS universal binaries is supported only on darwin host platforms')
logging.info(f"Building macOS universal binaries on host platform {host_platform}")
host_build_root_dir = os.path.join(opts.build_root_dir, host_platform)
mkdir_if_not_exists(host_build_root_dir, opts.verbose, opts.dry_run)
host_build_opts = copy.copy(opts)
host_build_opts.macos_universal_binaries = False
host_build_opts.target_platform = host_platform
host_build_opts.build_root_dir = host_build_root_dir
host_build_opts.cmake_extra_args = copy.copy(host_build_opts.cmake_extra_args)
build(
host_build_opts,
cmake_platform_to_root_path=cmake_platform_to_root_path,
cmake_platform_to_python_dev_paths=cmake_platform_to_python_dev_paths
)
cross_build_root_dir = os.path.join(opts.build_root_dir, cross_build_platform)
mkdir_if_not_exists(cross_build_root_dir, opts.verbose, opts.dry_run)
cross_build_opts = copy.copy(opts)
cross_build_opts.macos_universal_binaries = False
cross_build_opts.target_platform = cross_build_platform
cross_build_opts.build_root_dir = cross_build_root_dir
cross_build_opts.cmake_extra_args = copy.copy(cross_build_opts.cmake_extra_args)
if cross_build_opts.native_built_tools_root_dir is None:
cross_build_opts.native_built_tools_root_dir = os.path.abspath(host_build_opts.build_root_dir)
cross_build(
cross_build_opts,
cmake_platform_to_root_path=cmake_platform_to_root_path,
cmake_platform_to_python_dev_paths=cmake_platform_to_python_dev_paths,
cmd_runner=cmd_runner
)
lipo(opts, cmd_runner)
def get_default_cross_build_toolchain(source_root_dir, opts):
build_system_name = platform.system().lower()
target_system_name, target_system_arch = opts.target_platform.split('-')
default_toolchains_dir = os.path.join(source_root_dir, 'build','toolchains')
if build_system_name == 'darwin':
if target_system_name != 'darwin':
raise RuntimeError('Cross-compilation from macOS to non-macOS is not supported')
return os.path.join(
default_toolchains_dir,
f'cross-build.host.darwin.target.{target_system_arch}-darwin-default.clang.toolchain'
)
elif build_system_name == 'linux':
if target_system_name == 'android':
# use toolchain from NDK
if opts.android_ndk_root_dir is None:
raise RuntimeError('Android NDK root dir not specified')
return os.path.join(opts.android_ndk_root_dir, 'build', 'cmake', 'android.toolchain.cmake')
elif target_system_name == 'linux':
return os.path.join(
default_toolchains_dir,
f'cross-build.host.linux.target.{target_system_arch}-linux-gnu.clang.toolchain'
)
else:
raise RuntimeError(f'Cross-compilation from {build_system_name} to {target_system_name} is not supported')
else:
raise RuntimeError(f'Cross-compilation from {build_system_name} is not supported')
def get_default_cross_build_conan_host_profile(source_root_dir, target_platform):
target_system_name, target_system_arch = target_platform.split('-')
# a bit of name mismatch
conan_profile_target_system_name = 'macos' if target_system_name == 'darwin' else target_system_name
return os.path.join(
source_root_dir,
'cmake',
'conan-profiles',
f'{conan_profile_target_system_name}.{target_system_arch}.profile'
)
def cross_build(
opts: Opts,
cmake_platform_to_root_path:Dict[str,str]=None,
cmake_platform_to_python_dev_paths:Dict[str,PythonDevPaths]=None,
cmd_runner=None):
"""
cmake_platform_to_root_path is dict: platform_name -> cmake_find_root_path
cmake_platform_to_python_dev_paths is dict: platform_name -> PythonDevPaths
"""
if cmd_runner is None:
cmd_runner = CmdRunner(opts.dry_run)
host_platform = get_host_platform()
logging.info(f"Cross-building from host platform {host_platform} to target platform {opts.target_platform}")
if opts.native_built_tools_root_dir:
native_built_tools_root_dir = opts.native_built_tools_root_dir
else:
native_built_tools_root_dir = os.path.join(opts.build_root_dir, 'native_tools')
mkdir_if_not_exists(native_built_tools_root_dir, opts.verbose, opts.dry_run)
logging.info("Build tools")
build(
opts=Opts(
dry_run=opts.dry_run,
verbose=opts.verbose,
build_root_dir=native_built_tools_root_dir,
build_type='Release',
rebuild=opts.rebuild,
targets=Targets.tools,
cmake_target_toolchain=opts.cmake_build_toolchain,
conan_build_profile=opts.conan_build_profile,
conan_host_profile=opts.conan_build_profile,
msvs_version=opts.msvs_version,
msvc_toolset=opts.msvc_toolset,
macosx_version_min=opts.macosx_version_min
),
cmake_platform_to_root_path=cmake_platform_to_root_path,
cmake_platform_to_python_dev_paths=cmake_platform_to_python_dev_paths
)
source_root_dir = get_source_root_dir()
if opts.cmake_target_toolchain is None:
cmake_target_toolchain = get_default_cross_build_toolchain(source_root_dir, opts)
else:
cmake_target_toolchain = opts.cmake_target_toolchain
if opts.conan_host_profile is None:
conan_host_profile = get_default_cross_build_conan_host_profile(source_root_dir, opts.target_platform)
else:
conan_host_profile = opts.conan_host_profile
conan_install_cmd = [
'conan',
'install',
'-s', f'build_type={opts.build_type}',
'--output-folder', opts.build_root_dir,
'--build=missing',
f'-pr:b={opts.conan_build_profile if opts.conan_build_profile else "default"}',
f'-pr:h={conan_host_profile}'
]
if opts.target_platform.startswith('darwin-'):
conan_install_cmd += ['-s:h', f'os.version={opts.macosx_version_min}']
conan_install_cmd += [os.path.join(source_root_dir, 'conanfile.py')]
logging.info(f"Run conan install for target platform {opts.target_platform}")
cmd_runner.run(conan_install_cmd)
final_build_opts = copy.copy(opts)
final_build_opts.cmake_target_toolchain = cmake_target_toolchain
final_build_opts.native_built_tools_root_dir = native_built_tools_root_dir
logging.info(f"Run build for target platform {opts.target_platform}")
build(
opts=final_build_opts,
cross_build_final_stage=True,
cmake_platform_to_root_path=cmake_platform_to_root_path,
cmake_platform_to_python_dev_paths=cmake_platform_to_python_dev_paths
)
def get_require_pic(targets):
for target in targets:
if target in Targets.catboost:
if Targets.catboost[target].need_pic:
return True
return False
def get_msvs_dir(msvs_installation_path, msvs_version):
if msvs_installation_path is None:
program_files = 'Program Files' if msvs_version == '2022' else 'Program Files (x86)'
msvs_base_dir = f'c:\\{program_files}\\Microsoft Visual Studio\\{msvs_version}'
else:
msvs_base_dir = os.path.join(msvs_installation_path, msvs_version)
if os.path.exists(f'{msvs_base_dir}\\Community'):
msvs_dir = f'{msvs_base_dir}\\Community'
elif os.path.exists(f'{msvs_base_dir}\\Enterprise'):
msvs_dir = f'{msvs_base_dir}\\Enterprise'
else:
raise RuntimeError(f'Microsoft Visual Studio {msvs_version} installation not found')
return msvs_dir
def get_msvc_toolset(msvs_version, msvc_toolset):
if msvc_toolset:
return msvc_toolset
if msvs_version not in MSVS_TO_DEFAULT_MSVC_TOOLSET:
raise RuntimeError(f'No default C++ toolset for Microsoft Visual Studio {msvs_version}')
return MSVS_TO_DEFAULT_MSVC_TOOLSET[msvs_version]
def get_msvc_environ(msvs_installation_path, msvs_version, msvc_toolset, cmd_runner, dry_run):
msvs_dir = get_msvs_dir(msvs_installation_path, msvs_version)
msvc_toolset = get_msvc_toolset(msvs_version, msvc_toolset)
env_vars = {}
# can't use NamedTemporaryFile or mkstemp because of child proces access issues
with tempfile.TemporaryDirectory() as tmp_dir:
env_vars_file_path = os.path.join(tmp_dir, 'env_vars')
cmd = f'"{msvs_dir}\\VC\\Auxiliary\\Build\\vcvars64.bat" -vcvars_ver={msvc_toolset} && set > {env_vars_file_path}'
cmd_runner.run(cmd, run_even_with_dry_run=True, shell=True)
with open(env_vars_file_path) as env_vars_file:
for l in env_vars_file:
key, value = l[:-1].split('=', maxsplit=1)
env_vars[key] = value
return env_vars
def get_cuda_root_dir(cuda_root_dir_option):
cuda_root_dir = cuda_root_dir_option or os.environ.get('CUDA_PATH') or os.environ.get('CUDA_ROOT')
if not cuda_root_dir:
raise RuntimeError('No cuda_root_dir specified and CUDA_PATH and CUDA_ROOT environment variables also not defined')
return cuda_root_dir
def add_cuda_bin_path_to_system_path(build_environ, cuda_root_dir):
cuda_bin_dir = os.path.join(cuda_root_dir, 'bin')
if platform.system().lower() == 'windows':
if 'Path' in build_environ:
path_env_name = 'Path'
elif 'PATH' in build_environ:
path_env_name = 'PATH'
else:
raise RuntimeError('no PATH environment variable')
build_environ[path_env_name] = cuda_bin_dir + ';' + build_environ[path_env_name]
else:
build_environ['PATH'] = cuda_bin_dir + ':' + build_environ['PATH']
def get_catboost_components(targets):
catboost_components = set()
for target in targets:
if target in Targets.catboost:
catboost_components.add(Targets.catboost[target].catboost_component)
return catboost_components
def get_default_build_platform_toolchain(source_root_dir):
if platform.system().lower() == 'windows':
return os.path.abspath(os.path.join(source_root_dir, 'build', 'toolchains', 'default.toolchain'))
else:
return os.path.abspath(os.path.join(source_root_dir, 'build', 'toolchains', 'clang.toolchain'))
def get_build_environ(opts, target_platform, cmd_runner):
if platform.system().lower() == 'windows':
# Need vcvars set up for Ninja generator
build_environ = get_msvc_environ(
opts.msvs_installation_path,
opts.msvs_version,
opts.msvc_toolset,
cmd_runner,
opts.dry_run
)
else:
build_environ = copy.deepcopy(os.environ)
if target_platform == 'linux-aarch64':
# Inject these flags to conan builds
# TODO(akhropov): Prefer a more general solution at CMake/conan level
build_environ['CFLAGS'] = '-mno-outline-atomics'
build_environ['CXXFLAGS'] = '-mno-outline-atomics'
if opts.have_cuda:
cuda_root_dir = get_cuda_root_dir(opts.cuda_root_dir)
# CMake requires nvcc to be available in $PATH
add_cuda_bin_path_to_system_path(build_environ, cuda_root_dir)
# this environment variable can be used in conan profiles to avoid profile duplication
build_environ['CMAKE_BUILD_TYPE'] = opts.build_type
return build_environ
def get_default_windows_conan_host_profile(
source_root_dir,
target_platform,
msvs_version,
msvc_toolset):
target_system_name, target_system_arch = target_platform.split('-')
assert target_system_name == 'windows'
if msvs_version == '2022':
msvc_toolset = get_msvc_toolset(msvs_version, msvc_toolset)
if msvc_toolset.startswith('14.28.') or msvc_toolset.startswith('14.29.'):
return os.path.join(
source_root_dir,
'cmake',
'conan-profiles',
f'windows.msvs2022.{target_system_arch}.profile'
)
return None
def build(
opts=None,
cross_build_final_stage=False,
cmake_platform_to_root_path:Dict[str,str]=None,
cmake_platform_to_python_dev_paths:Dict[str,PythonDevPaths]=None,
**kwargs):
"""
cmake_platform_to_root_path is dict: platform_name -> cmake_find_root_path
cmake_platform_to_python_dev_paths is dict: platform_name -> PythonDevPaths
"""
if opts is None:
opts = Opts(**kwargs)
if opts.native_built_tools_root_dir is not None:
opts.native_built_tools_root_dir = os.path.abspath(opts.native_built_tools_root_dir)
cmd_runner = CmdRunner(opts.dry_run)
if opts.macos_universal_binaries:
if opts.target_platform is not None:
raise RuntimeError('macos_universal_binaries and target_platform options are incompatible')
build_macos_universal_binaries(opts, cmake_platform_to_root_path, cmake_platform_to_python_dev_paths, cmd_runner)
return
elif opts.target_platform is not None:
if (opts.target_platform != get_host_platform()) and not cross_build_final_stage:
cross_build(opts, cmake_platform_to_root_path, cmake_platform_to_python_dev_paths, cmd_runner)
return
target_platform = opts.target_platform
else:
target_platform = get_host_platform()
# require_pic = get_require_pic(opts.targets)
# TODO(akhropov): return when -fPIC is removed from explicit linking flags
require_pic = True
logging.info(
f'target_platform={target_platform}. Building targets {" ".join(opts.targets)} {"with" if require_pic else "without"} PIC'
)
source_root_dir = get_source_root_dir()
if opts.cmake_target_toolchain is None:
cmake_target_toolchain = get_default_build_platform_toolchain(source_root_dir)
else:
cmake_target_toolchain = opts.cmake_target_toolchain
build_environ = get_build_environ(opts, target_platform, cmd_runner)
# can be empty if called for tools build
catboost_components = get_catboost_components(opts.targets)
cmake_cmd = [
'cmake',
source_root_dir,
'-B', opts.build_root_dir,
'-G', 'Ninja',
f'-DCMAKE_BUILD_TYPE={opts.build_type}',
f'-DCMAKE_TOOLCHAIN_FILE={cmake_target_toolchain}',
f'-DCMAKE_PROJECT_TOP_LEVEL_INCLUDES={source_root_dir}/cmake/conan_provider.cmake'
]
conan_host_profile = opts.conan_host_profile
if platform.system().lower() == 'windows':
if not conan_host_profile:
# TODO: support proper passing of mavc_toolset in conan_provider.cmake
conan_host_profile = get_default_windows_conan_host_profile(
source_root_dir,
target_platform,
opts.msvs_version,
opts.msvc_toolset
)
if not opts.have_cuda:
msvs_dir = get_msvs_dir(opts.msvs_installation_path, opts.msvs_version)
# Use clang-cl for the build without CUDA and standard Microsoft toolchain for the build with CUDA
# (as clang-cl is not supported by CUDA yet)
cmake_cmd += [
f'-DCMAKE_CXX_COMPILER:FILEPATH={msvs_dir}\\VC\\Tools\\Llvm\\x64\\bin\\clang-cl.exe',
f'-DCMAKE_C_COMPILER:FILEPATH={msvs_dir}\\VC\\Tools\\Llvm\\x64\\bin\\clang-cl.exe',
f'-DCMAKE_RC_COMPILER:FILEPATH={msvs_dir}\\VC\\Tools\\Llvm\\x64\\bin\\llvm-rc.exe'
]
if opts.conan_build_profile:
cmake_cmd += [f'-DCONAN_BUILD_PROFILE={opts.conan_build_profile}']
if conan_host_profile:
cmake_cmd += [f'-DCONAN_HOST_PROFILE={conan_host_profile}']
if opts.verbose:
cmake_cmd += ['--log-level=VERBOSE']
if require_pic:
cmake_cmd += ['-DCMAKE_POSITION_INDEPENDENT_CODE=On']
cmake_cmd += [f'-DCATBOOST_COMPONENTS={";".join(sorted(catboost_components)) if catboost_components else "none"}']
if platform.system().lower() == 'darwin':
cmake_cmd += [f'-DCMAKE_OSX_DEPLOYMENT_TARGET={opts.macosx_version_min}']
cmake_cmd += [f'-DHAVE_CUDA={"yes" if opts.have_cuda else "no"}']
if opts.have_cuda:
cuda_root_dir = get_cuda_root_dir(opts.cuda_root_dir)
cmake_cmd += [
f'-DCUDAToolkit_ROOT={cuda_root_dir}',
f'-DCMAKE_CUDA_RUNTIME_LIBRARY={opts.cuda_runtime_library}'
]
if opts.native_built_tools_root_dir:
cmake_cmd += [f'-DTOOLS_ROOT={opts.native_built_tools_root_dir}']
if cmake_platform_to_root_path is not None:
cmake_cmd += [f'-DCMAKE_FIND_ROOT_PATH={cmake_platform_to_root_path[target_platform]}']
if cmake_platform_to_python_dev_paths is not None:
cmake_platform_to_python_dev_paths[target_platform].add_to_cmake_args(cmake_cmd)
if opts.cmake_extra_args is not None:
cmake_cmd += opts.cmake_extra_args
cmd_runner.run(cmake_cmd, env=build_environ)
# Manifest is necessary to enable long paths on Windows
# https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation
if platform.system().lower() == 'windows':
# use cmake -E copy as a cross-platform copy command that can be run through cmd_runner
# for uniformity
copy_swig_manifest_cmd = [
'cmake',
'-E', 'copy',
os.path.join(source_root_dir, 'build', 'swig.exe.manifest'),
os.path.join(opts.build_root_dir, 'bin')
]
cmd_runner.run(copy_swig_manifest_cmd, env=build_environ)
if opts.rebuild:
ninja_clean_cmd = [
'ninja',
'-C', opts.build_root_dir,
'clean'
]
if opts.verbose:
ninja_cmd += ['-v']
ninja_clean_cmd += opts.targets
cmd_runner.run(ninja_clean_cmd, env=build_environ)
ninja_cmd = [
'ninja',
'-C', opts.build_root_dir,
]
if opts.verbose:
ninja_cmd += ['-v']
if opts.parallel_build_jobs is not None:
ninja_cmd += ['-j', str(opts.parallel_build_jobs)]
ninja_cmd += opts.targets
cmd_runner.run(ninja_cmd, env=build_environ)
if __name__ == '__main__':
logging.basicConfig(level=logging.INFO)
parser = argparse.ArgumentParser(
description=(
'Script to build CatBoost binary artifacts using CMake and Ninja (cross-compilation supported).\n'
+ ' All unrecognized arguments will be added to cmake_extra_args'
),
allow_abbrev=False
)
for key, option in Opts.known_opts.items():
kwargs = {
'help': option.description,
'required': option.required,
'default': option.default,
'action': 'store_true' if option.opt_type is bool else 'store'
}
if option.opt_type is list:
kwargs['type'] = lambda s: s.split(',')
elif option.opt_type is not bool:
kwargs['type'] = option.opt_type
parser.add_argument(
'--' + key.replace('_', '-'),
**kwargs
)
parsed_args, cmake_extra_args = parser.parse_known_args()
parsed_args.cmake_extra_args += cmake_extra_args
build(Opts(**vars(parsed_args)))