Primiano Tucci | 34bc559 | 2021-02-19 17:53:36 +0100 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 2 | # Copyright (C) 2017 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Florian Mayer | 41b3daa | 2020-06-29 17:45:59 +0100 | [diff] [blame] | 16 | from __future__ import absolute_import |
| 17 | from __future__ import division |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 18 | from __future__ import print_function |
| 19 | |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 20 | import argparse |
| 21 | import os |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 22 | import platform |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 23 | import subprocess |
| 24 | import sys |
| 25 | |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 26 | from compat import iteritems, quote |
| 27 | |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 28 | MAC_BUILD_CONFIGS = { |
Primiano Tucci | 834fdc7 | 2019-10-04 11:33:44 +0100 | [diff] [blame] | 29 | 'mac_debug': ('is_clang=true', 'is_debug=true'), |
| 30 | 'mac_release': ('is_clang=true', 'is_debug=false'), |
| 31 | 'mac_asan': ('is_clang=true', 'is_debug=false', 'is_asan=true'), |
| 32 | 'mac_tsan': ('is_clang=true', 'is_debug=false', 'is_tsan=true'), |
| 33 | 'mac_ubsan': ('is_clang=true', 'is_debug=false', 'is_ubsan=true'), |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | ANDROID_BUILD_CONFIGS = { |
Primiano Tucci | 834fdc7 | 2019-10-04 11:33:44 +0100 | [diff] [blame] | 37 | 'android_debug': ('target_os="android"', 'is_clang=true', 'is_debug=true'), |
Florian Mayer | 3c8f176 | 2021-02-22 12:11:27 +0000 | [diff] [blame] | 38 | 'android_release': |
| 39 | ('target_os="android"', 'is_clang=true', 'is_debug=false'), |
| 40 | 'android_release_incl_heapprofd': |
| 41 | ('target_os="android"', 'is_clang=true', 'is_debug=false', |
| 42 | 'extra_cflags="-funwind-tables"', 'android_api_level=29'), |
Primiano Tucci | 834fdc7 | 2019-10-04 11:33:44 +0100 | [diff] [blame] | 43 | 'android_asan': ('target_os="android"', 'is_clang=true', 'is_debug=false', |
| 44 | 'is_asan=true'), |
| 45 | 'android_lsan': ('target_os="android"', 'is_clang=true', 'is_debug=false', |
| 46 | 'is_lsan=true'), |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 47 | } |
| 48 | |
Matthew Clarkson | 170c204 | 2019-09-04 09:36:01 +0100 | [diff] [blame] | 49 | ANDROID_ARCHS = ('arm', 'arm64') |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 50 | |
| 51 | LINUX_BUILD_CONFIGS = { |
Primiano Tucci | 834fdc7 | 2019-10-04 11:33:44 +0100 | [diff] [blame] | 52 | 'linux_gcc_debug': ('is_clang=false', 'is_debug=true'), |
| 53 | 'linux_gcc_release': ('is_clang=false', 'is_debug=false'), |
| 54 | 'linux_clang_debug': ('is_clang=true', 'is_debug=true'), |
| 55 | 'linux_clang_release': ('is_clang=true', 'is_debug=false'), |
| 56 | 'linux_asan': ('is_clang=true', 'is_debug=false', 'is_asan=true'), |
| 57 | 'linux_lsan': ('is_clang=true', 'is_debug=false', 'is_lsan=true'), |
| 58 | 'linux_msan': ('is_clang=true', 'is_debug=false', 'is_msan=true'), |
| 59 | 'linux_tsan': ('is_clang=true', 'is_debug=false', 'is_tsan=true'), |
| 60 | 'linux_ubsan': ('is_clang=true', 'is_debug=false', 'is_ubsan=true'), |
Hector Dearman | b1989b0 | 2022-07-05 20:11:07 +0100 | [diff] [blame] | 61 | 'linux_fuzzer': |
| 62 | ('is_clang=true', 'is_debug=false', 'is_fuzzer=true', 'is_asan=true'), |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 63 | } |
| 64 | |
Matthew Clarkson | 170c204 | 2019-09-04 09:36:01 +0100 | [diff] [blame] | 65 | LINUX_ARCHS = ('arm64',) |
| 66 | |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 67 | ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
| 68 | |
Matthew Clarkson | 170c204 | 2019-09-04 09:36:01 +0100 | [diff] [blame] | 69 | |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 70 | def main(): |
| 71 | parser = argparse.ArgumentParser() |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 72 | parser.add_argument('--ccache', action='store_true', default=False) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 73 | parser.add_argument('--host-only', action='store_true', default=False) |
Primiano Tucci | 69132a1 | 2020-02-07 22:33:06 +0000 | [diff] [blame] | 74 | parser.add_argument('--android', action='store_true', default=False) |
Florian Mayer | 491e2d9 | 2021-02-23 13:39:36 +0000 | [diff] [blame] | 75 | parser.add_argument( |
| 76 | '--export-compile-commands', action="store_true", default=False) |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 77 | parser.add_argument('--build', metavar='TARGET') |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 78 | args = parser.parse_args() |
| 79 | |
| 80 | configs = {} |
| 81 | if not args.host_only: |
Primiano Tucci | 69132a1 | 2020-02-07 22:33:06 +0000 | [diff] [blame] | 82 | if args.android: |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 83 | for config_name, gn_args in iteritems(ANDROID_BUILD_CONFIGS): |
| 84 | for arch in ANDROID_ARCHS: |
| 85 | full_config_name = '%s_%s' % (config_name, arch) |
| 86 | configs[full_config_name] = gn_args + ('target_cpu="%s"' % arch,) |
| 87 | for config_name, gn_args in iteritems(LINUX_BUILD_CONFIGS): |
Matthew Clarkson | 170c204 | 2019-09-04 09:36:01 +0100 | [diff] [blame] | 88 | if dict(a.split('=') for a in gn_args).get('is_clang', None) == 'true': |
| 89 | continue |
| 90 | for arch in LINUX_ARCHS: |
| 91 | full_config_name = '%s_%s' % (config_name, arch) |
| 92 | configs[full_config_name] = gn_args + ('target_cpu="%s"' % arch, |
| 93 | 'target_os="linux"') |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 94 | |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 95 | system = platform.system().lower() |
| 96 | if system == 'linux': |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 97 | configs.update(LINUX_BUILD_CONFIGS) |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 98 | elif system == 'darwin': |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 99 | configs.update(MAC_BUILD_CONFIGS) |
| 100 | else: |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 101 | assert False, 'Unsupported system %r' % system |
| 102 | |
| 103 | if args.ccache: |
| 104 | for config_name, gn_args in iteritems(configs): |
| 105 | configs[config_name] = gn_args + ('cc_wrapper="ccache"',) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 106 | |
| 107 | out_base_dir = os.path.join(ROOT_DIR, 'out') |
| 108 | if not os.path.isdir(out_base_dir): |
| 109 | os.mkdir(out_base_dir) |
| 110 | |
Primiano Tucci | 7a40e4d | 2017-12-06 09:51:09 +0000 | [diff] [blame] | 111 | gn = os.path.join(ROOT_DIR, 'tools', 'gn') |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 112 | |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 113 | for config_name, gn_args in iteritems(configs): |
Hector Dearman | b1989b0 | 2022-07-05 20:11:07 +0100 | [diff] [blame] | 114 | print('\n\033[32mBuilding %-20s[%s]\033[0m' % |
| 115 | (config_name, ','.join(gn_args))) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 116 | out_dir = os.path.join(ROOT_DIR, 'out', config_name) |
| 117 | if not os.path.isdir(out_dir): |
| 118 | os.mkdir(out_dir) |
Matthew Clarkson | 170c204 | 2019-09-04 09:36:01 +0100 | [diff] [blame] | 119 | gn_cmd = (gn, 'gen', out_dir, '--args=%s' % (' '.join(gn_args)), '--check') |
Florian Mayer | 491e2d9 | 2021-02-23 13:39:36 +0000 | [diff] [blame] | 120 | if args.export_compile_commands: |
| 121 | gn_cmd += ('--export-compile-commands',) |
Matthew Clarkson | 9a5dfa5 | 2019-10-03 09:54:04 +0100 | [diff] [blame] | 122 | print(' '.join(quote(c) for c in gn_cmd)) |
Florian Mayer | a83b59c | 2018-12-14 20:03:57 +0000 | [diff] [blame] | 123 | subprocess.check_call(gn_cmd, cwd=ROOT_DIR) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 124 | if args.build: |
Primiano Tucci | 7a40e4d | 2017-12-06 09:51:09 +0000 | [diff] [blame] | 125 | ninja = os.path.join(ROOT_DIR, 'tools', 'ninja') |
Matthew Clarkson | 170c204 | 2019-09-04 09:36:01 +0100 | [diff] [blame] | 126 | ninja_cmd = (ninja, '-C', '.', args.build) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 127 | subprocess.check_call(ninja_cmd, cwd=out_dir) |
| 128 | |
| 129 | |
| 130 | if __name__ == '__main__': |
| 131 | sys.exit(main()) |