Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 1 | // Copyright 2016 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package cc |
| 16 | |
| 17 | import ( |
| 18 | "fmt" |
| 19 | "path/filepath" |
Yi Kong | 950e0ba | 2019-10-08 02:27:17 -0700 | [diff] [blame] | 20 | "regexp" |
Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 21 | "strconv" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 22 | "strings" |
| 23 | |
Colin Cross | 4b963f8 | 2016-09-29 14:06:02 -0700 | [diff] [blame] | 24 | "github.com/google/blueprint/proptools" |
| 25 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 26 | "android/soong/android" |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 27 | "android/soong/cc/config" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 28 | ) |
| 29 | |
Ivan Lozano | d094d40 | 2019-11-26 10:32:50 -0800 | [diff] [blame] | 30 | var ( |
| 31 | allowedManualInterfacePaths = []string{"vendor/", "hardware/"} |
| 32 | ) |
| 33 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 34 | // This file contains the basic C/C++/assembly to .o compliation steps |
| 35 | |
| 36 | type BaseCompilerProperties struct { |
| 37 | // list of source files used to compile the C/C++ module. May be .c, .cpp, or .S files. |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 38 | // srcs may reference the outputs of other modules that produce source files like genrule |
| 39 | // or filegroup using the syntax ":module". |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 40 | Srcs proptools.Configurable[[]string] `android:"path,arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 41 | |
Chih-Hung Hsieh | 769a51c | 2021-09-17 17:18:39 -0700 | [diff] [blame] | 42 | // list of source files that should not be compiled with clang-tidy. |
| 43 | Tidy_disabled_srcs []string `android:"path,arch_variant"` |
| 44 | |
Chih-Hung Hsieh | 9db8a0c | 2022-02-17 12:54:45 -0800 | [diff] [blame] | 45 | // list of source files that should not be compiled by clang-tidy when TIDY_TIMEOUT is set. |
| 46 | Tidy_timeout_srcs []string `android:"path,arch_variant"` |
| 47 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 48 | // list of source files that should not be used to build the C/C++ module. |
| 49 | // This is most useful in the arch/multilib variants to remove non-common files |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 50 | Exclude_srcs proptools.Configurable[[]string] `android:"path,arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 51 | |
| 52 | // list of module-specific flags that will be used for C and C++ compiles. |
Cole Faust | e96c16a | 2024-06-13 14:51:14 -0700 | [diff] [blame] | 53 | Cflags proptools.Configurable[[]string] `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 54 | |
| 55 | // list of module-specific flags that will be used for C++ compiles |
Aleks Todorov | 0384c97 | 2024-07-26 13:41:13 +0100 | [diff] [blame] | 56 | Cppflags proptools.Configurable[[]string] `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 57 | |
| 58 | // list of module-specific flags that will be used for C compiles |
| 59 | Conlyflags []string `android:"arch_variant"` |
| 60 | |
| 61 | // list of module-specific flags that will be used for .S compiles |
| 62 | Asflags []string `android:"arch_variant"` |
| 63 | |
| 64 | // list of module-specific flags that will be used for C and C++ compiles when |
| 65 | // compiling with clang |
| 66 | Clang_cflags []string `android:"arch_variant"` |
| 67 | |
| 68 | // list of module-specific flags that will be used for .S compiles when |
| 69 | // compiling with clang |
| 70 | Clang_asflags []string `android:"arch_variant"` |
| 71 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 72 | // the instruction set architecture to use to compile the C/C++ |
| 73 | // module. |
Dan Willemsen | 5922f3c | 2017-10-25 15:20:50 -0700 | [diff] [blame] | 74 | Instruction_set *string `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 75 | |
| 76 | // list of directories relative to the root of the source tree that will |
| 77 | // be added to the include path using -I. |
| 78 | // If possible, don't use this. If adding paths from the current directory use |
| 79 | // local_include_dirs, if adding paths from other modules use export_include_dirs in |
| 80 | // that module. |
Colin Cross | ccf01e7 | 2017-04-26 17:01:07 -0700 | [diff] [blame] | 81 | Include_dirs []string `android:"arch_variant,variant_prepend"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 82 | |
| 83 | // list of directories relative to the Blueprints file that will |
| 84 | // be added to the include path using -I |
Dan Willemsen | 59339a2 | 2018-07-22 21:18:45 -0700 | [diff] [blame] | 85 | Local_include_dirs []string `android:"arch_variant,variant_prepend"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 86 | |
Dan Albert | 899c23e | 2018-12-06 11:04:03 -0800 | [diff] [blame] | 87 | // Add the directory containing the Android.bp file to the list of include |
| 88 | // directories. Defaults to true. |
| 89 | Include_build_directory *bool |
| 90 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 91 | // list of generated sources to compile. These are the names of gensrcs or |
| 92 | // genrule modules. |
| 93 | Generated_sources []string `android:"arch_variant"` |
| 94 | |
Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 95 | // list of generated sources that should not be used to build the C/C++ module. |
| 96 | // This is most useful in the arch/multilib variants to remove non-common files |
| 97 | Exclude_generated_sources []string `android:"arch_variant"` |
| 98 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 99 | // list of generated headers to add to the include path. These are the names |
| 100 | // of genrule modules. |
Aleks Todorov | 93b6dd0 | 2024-06-14 16:55:12 +0100 | [diff] [blame] | 101 | Generated_headers proptools.Configurable[[]string] `android:"arch_variant,variant_prepend"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 102 | |
Cole Faust | 65cb40a | 2024-10-21 15:41:42 -0700 | [diff] [blame^] | 103 | // Same as generated_headers, but the dependencies will be added based on the first supported |
| 104 | // arch variant and the device os variant. This can be useful for creating a host tool that |
| 105 | // embeds a copy of a device tool, that it then extracts and pushes to a device at runtime. |
| 106 | Device_first_generated_headers proptools.Configurable[[]string] `android:"arch_variant,variant_prepend"` |
| 107 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 108 | // pass -frtti instead of -fno-rtti |
Frederick Mayle | 7833af1 | 2024-06-07 16:02:44 -0700 | [diff] [blame] | 109 | Rtti *bool `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 110 | |
Dan Albert | 043833c | 2017-02-03 16:13:38 -0800 | [diff] [blame] | 111 | // C standard version to use. Can be a specific version (such as "gnu11"), |
| 112 | // "experimental" (which will use draft versions like C1x when available), |
| 113 | // or the empty string (which will use the default). |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 114 | C_std *string |
Dan Albert | 043833c | 2017-02-03 16:13:38 -0800 | [diff] [blame] | 115 | |
| 116 | // C++ standard version to use. Can be a specific version (such as |
| 117 | // "gnu++11"), "experimental" (which will use draft versions like C++1z when |
| 118 | // available), or the empty string (which will use the default). |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 119 | Cpp_std *string |
Dan Albert | 043833c | 2017-02-03 16:13:38 -0800 | [diff] [blame] | 120 | |
Colin Cross | 948f0cb | 2016-10-17 14:24:56 -0700 | [diff] [blame] | 121 | // if set to false, use -std=c++* instead of -std=gnu++* |
| 122 | Gnu_extensions *bool |
| 123 | |
AdityaK | 6cfd07e | 2024-01-31 14:31:20 -0800 | [diff] [blame] | 124 | // cc Build rules targeting BPF must set this to true. The correct fix is to |
| 125 | // ban targeting bpf in cc rules instead use bpf_rules. (b/323415017) |
| 126 | Bpf_target *bool |
| 127 | |
kellyhung | d62ea30 | 2024-05-19 21:16:07 +0800 | [diff] [blame] | 128 | // Add "-Xclang -verify" to the cflags and appends "touch $out" to |
| 129 | // the clang command line. |
| 130 | Clang_verify bool |
| 131 | |
Dan Willemsen | 4e0aa23 | 2019-04-10 22:59:54 -0700 | [diff] [blame] | 132 | Yacc *YaccProperties |
Matthias Maennich | 22fd4d1 | 2020-07-15 10:58:56 +0200 | [diff] [blame] | 133 | Lex *LexProperties |
Dan Willemsen | 4e0aa23 | 2019-04-10 22:59:54 -0700 | [diff] [blame] | 134 | |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 135 | Aidl struct { |
Vinh Tran | 367d89d | 2023-04-28 11:21:25 -0400 | [diff] [blame] | 136 | // List of aidl_library modules |
| 137 | Libs []string |
| 138 | |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 139 | // list of directories that will be added to the aidl include paths. |
| 140 | Include_dirs []string |
| 141 | |
| 142 | // list of directories relative to the Blueprints file that will |
| 143 | // be added to the aidl include paths. |
| 144 | Local_include_dirs []string |
Martijn Coenen | eab1564 | 2018-03-09 09:29:59 +0100 | [diff] [blame] | 145 | |
| 146 | // whether to generate traces (for systrace) for this interface |
| 147 | Generate_traces *bool |
Jooyung Han | e197d8b | 2021-01-05 10:33:16 +0900 | [diff] [blame] | 148 | |
| 149 | // list of flags that will be passed to the AIDL compiler |
| 150 | Flags []string |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Tomasz Wasilczyk | 5b007ea | 2024-04-25 11:19:37 -0700 | [diff] [blame] | 153 | // Populated by aidl_interface CPP backend to let other modules (e.g. cc_cmake_snapshot) |
| 154 | // access actual source files and not generated cpp intermediary sources. |
| 155 | AidlInterface struct { |
| 156 | // list of aidl_interface sources |
| 157 | Sources []string `blueprint:"mutated"` |
| 158 | |
Tomasz Wasilczyk | 1e831bf | 2024-05-10 15:15:21 -0700 | [diff] [blame] | 159 | // root directory of AIDL sources |
| 160 | AidlRoot string `blueprint:"mutated"` |
| 161 | |
Tomasz Wasilczyk | 5b007ea | 2024-04-25 11:19:37 -0700 | [diff] [blame] | 162 | // AIDL backend language (e.g. "cpp", "ndk") |
| 163 | Lang string `blueprint:"mutated"` |
| 164 | |
| 165 | // list of flags passed to AIDL generator |
| 166 | Flags []string `blueprint:"mutated"` |
| 167 | } `blueprint:"mutated"` |
| 168 | |
Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 169 | Renderscript struct { |
| 170 | // list of directories that will be added to the llvm-rs-cc include paths |
| 171 | Include_dirs []string |
| 172 | |
| 173 | // list of flags that will be passed to llvm-rs-cc |
| 174 | Flags []string |
| 175 | |
| 176 | // Renderscript API level to target |
| 177 | Target_api *string |
| 178 | } |
| 179 | |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 180 | Target struct { |
Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 181 | Vendor, Product struct { |
| 182 | // list of source files that should only be used in vendor or |
| 183 | // product variant of the C/C++ module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 184 | Srcs []string `android:"path"` |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 185 | |
Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 186 | // list of source files that should not be used to build vendor |
| 187 | // or product variant of the C/C++ module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 188 | Exclude_srcs []string `android:"path"` |
Jiyong Park | a622de8 | 2017-08-10 13:33:27 +0900 | [diff] [blame] | 189 | |
Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 190 | // List of additional cflags that should be used to build vendor |
| 191 | // or product variant of the C/C++ module. |
Jiyong Park | a622de8 | 2017-08-10 13:33:27 +0900 | [diff] [blame] | 192 | Cflags []string |
Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 193 | |
Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 194 | // list of generated sources that should not be used to build |
| 195 | // vendor or product variant of the C/C++ module. |
Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 196 | Exclude_generated_sources []string |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 197 | } |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 198 | Recovery struct { |
| 199 | // list of source files that should only be used in the |
| 200 | // recovery variant of the C/C++ module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 201 | Srcs []string `android:"path"` |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 202 | |
| 203 | // list of source files that should not be used to |
| 204 | // build the recovery variant of the C/C++ module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 205 | Exclude_srcs []string `android:"path"` |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 206 | |
| 207 | // List of additional cflags that should be used to build the recovery |
| 208 | // variant of the C/C++ module. |
| 209 | Cflags []string |
Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 210 | |
| 211 | // list of generated sources that should not be used to |
| 212 | // build the recovery variant of the C/C++ module. |
| 213 | Exclude_generated_sources []string |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 214 | } |
Christopher Ferris | e0202c4 | 2023-07-27 17:06:46 -0700 | [diff] [blame] | 215 | Ramdisk, Vendor_ramdisk struct { |
Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 216 | // list of source files that should not be used to |
Christopher Ferris | e0202c4 | 2023-07-27 17:06:46 -0700 | [diff] [blame] | 217 | // build the ramdisk variants of the C/C++ module. |
Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 218 | Exclude_srcs []string `android:"path"` |
| 219 | |
Christopher Ferris | e0202c4 | 2023-07-27 17:06:46 -0700 | [diff] [blame] | 220 | // List of additional cflags that should be used to build the ramdisk |
| 221 | // variants of the C/C++ module. |
Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 222 | Cflags []string |
| 223 | } |
Jiyong Park | a592b6f | 2021-07-16 16:05:50 +0900 | [diff] [blame] | 224 | Platform struct { |
| 225 | // List of additional cflags that should be used to build the platform |
| 226 | // variant of the C/C++ module. |
| 227 | Cflags []string |
| 228 | } |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 229 | } |
Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 230 | |
Colin Cross | 38f794e | 2017-09-07 10:53:07 -0700 | [diff] [blame] | 231 | Proto struct { |
| 232 | // Link statically against the protobuf runtime |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 233 | Static *bool `android:"arch_variant"` |
Colin Cross | 38f794e | 2017-09-07 10:53:07 -0700 | [diff] [blame] | 234 | } `android:"arch_variant"` |
| 235 | |
Pirama Arumuga Nainar | fadb7b5 | 2017-12-19 23:08:09 -0800 | [diff] [blame] | 236 | // Build and link with OpenMP |
| 237 | Openmp *bool `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 240 | func NewBaseCompiler() *baseCompiler { |
| 241 | return &baseCompiler{} |
| 242 | } |
| 243 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 244 | type baseCompiler struct { |
| 245 | Properties BaseCompilerProperties |
Colin Cross | 38f794e | 2017-09-07 10:53:07 -0700 | [diff] [blame] | 246 | Proto android.ProtoProperties |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 247 | cFlagsDeps android.Paths |
Pirama Arumuga Nainar | 70ba5a3 | 2017-12-19 15:11:01 -0800 | [diff] [blame] | 248 | pathDeps android.Paths |
Fabien Sanglard | d61f1f4 | 2017-01-10 16:21:22 -0800 | [diff] [blame] | 249 | flags builderFlags |
Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 250 | |
| 251 | // Sources that were passed to the C/C++ compiler |
| 252 | srcs android.Paths |
| 253 | |
| 254 | // Sources that were passed in the Android.bp file, including generated sources generated by |
| 255 | // other modules and filegroups. May include source files that have not yet been translated to |
| 256 | // C/C++ (.aidl, .proto, etc.) |
| 257 | srcsBeforeGen android.Paths |
Paul Duffin | 33056e8 | 2021-02-19 13:49:08 +0000 | [diff] [blame] | 258 | |
| 259 | generatedSourceInfo |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | var _ compiler = (*baseCompiler)(nil) |
| 263 | |
Fabien Sanglard | d61f1f4 | 2017-01-10 16:21:22 -0800 | [diff] [blame] | 264 | type CompiledInterface interface { |
| 265 | Srcs() android.Paths |
| 266 | } |
| 267 | |
| 268 | func (compiler *baseCompiler) Srcs() android.Paths { |
Nan Zhang | e42777a | 2018-03-27 16:19:42 -0700 | [diff] [blame] | 269 | return append(android.Paths{}, compiler.srcs...) |
Fabien Sanglard | d61f1f4 | 2017-01-10 16:21:22 -0800 | [diff] [blame] | 270 | } |
| 271 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 272 | func (compiler *baseCompiler) appendCflags(flags []string) { |
Cole Faust | e96c16a | 2024-06-13 14:51:14 -0700 | [diff] [blame] | 273 | compiler.Properties.Cflags.AppendSimpleValue(flags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | func (compiler *baseCompiler) appendAsflags(flags []string) { |
| 277 | compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...) |
| 278 | } |
| 279 | |
Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 280 | func (compiler *baseCompiler) compilerProps() []interface{} { |
Colin Cross | 0feb169 | 2016-11-03 14:38:52 -0700 | [diff] [blame] | 281 | return []interface{}{&compiler.Properties, &compiler.Proto} |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Hao Chen | 1c8ea5b | 2023-10-20 23:03:45 +0000 | [diff] [blame] | 284 | func (compiler *baseCompiler) baseCompilerProps() BaseCompilerProperties { |
| 285 | return compiler.Properties |
| 286 | } |
| 287 | |
Liz Kammer | 135bf55 | 2021-08-11 10:46:06 -0400 | [diff] [blame] | 288 | func includeBuildDirectory(prop *bool) bool { |
| 289 | return proptools.BoolDefault(prop, true) |
| 290 | } |
| 291 | |
Liz Kammer | a4aa430 | 2021-03-18 16:56:36 -0400 | [diff] [blame] | 292 | func (compiler *baseCompiler) includeBuildDirectory() bool { |
Liz Kammer | 135bf55 | 2021-08-11 10:46:06 -0400 | [diff] [blame] | 293 | return includeBuildDirectory(compiler.Properties.Include_build_directory) |
Liz Kammer | a4aa430 | 2021-03-18 16:56:36 -0400 | [diff] [blame] | 294 | } |
| 295 | |
Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 296 | func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {} |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 297 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 298 | func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 299 | deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...) |
Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 300 | deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources) |
Aleks Todorov | 93b6dd0 | 2024-06-14 16:55:12 +0100 | [diff] [blame] | 301 | deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers.GetOrDefault(ctx, nil)...) |
Cole Faust | 65cb40a | 2024-10-21 15:41:42 -0700 | [diff] [blame^] | 302 | deps.DeviceFirstGeneratedHeaders = append(deps.DeviceFirstGeneratedHeaders, compiler.Properties.Device_first_generated_headers.GetOrDefault(ctx, nil)...) |
Vinh Tran | 367d89d | 2023-04-28 11:21:25 -0400 | [diff] [blame] | 303 | deps.AidlLibs = append(deps.AidlLibs, compiler.Properties.Aidl.Libs...) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 304 | |
Colin Cross | fe17f6f | 2019-03-28 19:30:56 -0700 | [diff] [blame] | 305 | android.ProtoDeps(ctx, &compiler.Proto) |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 306 | if compiler.hasSrcExt(ctx, ".proto") { |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 307 | deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static)) |
Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Pirama Arumuga Nainar | fadb7b5 | 2017-12-19 23:08:09 -0800 | [diff] [blame] | 310 | if Bool(compiler.Properties.Openmp) { |
| 311 | deps.StaticLibs = append(deps.StaticLibs, "libomp") |
| 312 | } |
| 313 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 314 | return deps |
| 315 | } |
| 316 | |
Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 317 | // Return true if the module is in the WarningAllowedProjects. |
| 318 | func warningsAreAllowed(subdir string) bool { |
| 319 | subdir += "/" |
Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 320 | return android.HasAnyPrefix(subdir, config.WarningAllowedProjects) |
Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 321 | } |
| 322 | |
Colin Cross | 571cccf | 2019-02-04 11:22:08 -0800 | [diff] [blame] | 323 | func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) { |
| 324 | getNamedMapForConfig(ctx.Config(), key).Store(module, true) |
Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 325 | } |
| 326 | |
Liz Kammer | a5a29de | 2022-05-25 23:19:37 -0400 | [diff] [blame] | 327 | func useGnuExtensions(gnuExtensions *bool) bool { |
| 328 | return proptools.BoolDefault(gnuExtensions, true) |
| 329 | } |
| 330 | |
Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 331 | func maybeReplaceGnuToC(gnuExtensions *bool, cStd string, cppStd string) (string, string) { |
Liz Kammer | a5a29de | 2022-05-25 23:19:37 -0400 | [diff] [blame] | 332 | if !useGnuExtensions(gnuExtensions) { |
Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 333 | cStd = gnuToCReplacer.Replace(cStd) |
| 334 | cppStd = gnuToCReplacer.Replace(cppStd) |
| 335 | } |
| 336 | return cStd, cppStd |
| 337 | } |
| 338 | |
| 339 | func parseCppStd(cppStdPtr *string) string { |
| 340 | cppStd := String(cppStdPtr) |
| 341 | switch cppStd { |
| 342 | case "": |
Chris Parsons | 79bd2b7 | 2021-11-29 17:52:41 -0500 | [diff] [blame] | 343 | return config.CppStdVersion |
Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 344 | case "experimental": |
Chris Parsons | 79bd2b7 | 2021-11-29 17:52:41 -0500 | [diff] [blame] | 345 | return config.ExperimentalCppStdVersion |
| 346 | default: |
| 347 | return cppStd |
Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 348 | } |
Chris Parsons | 79bd2b7 | 2021-11-29 17:52:41 -0500 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | func parseCStd(cStdPtr *string) string { |
| 352 | cStd := String(cStdPtr) |
| 353 | switch cStd { |
| 354 | case "": |
| 355 | return config.CStdVersion |
| 356 | case "experimental": |
| 357 | return config.ExperimentalCStdVersion |
| 358 | default: |
| 359 | return cStd |
| 360 | } |
Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 361 | } |
| 362 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 363 | // Create a Flags struct that collects the compile flags from global values, |
| 364 | // per-target values, module type values, and per-module Blueprints properties |
Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 365 | func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags { |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 366 | tc := ctx.toolchain() |
Colin Cross | f96b001 | 2023-10-26 14:01:51 -0700 | [diff] [blame] | 367 | modulePath := ctx.ModuleDir() |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 368 | |
Colin Cross | 7297f05 | 2024-10-01 14:02:50 -0700 | [diff] [blame] | 369 | reuseObjs := false |
| 370 | if len(ctx.GetDirectDepsWithTag(reuseObjTag)) > 0 { |
| 371 | reuseObjs = true |
| 372 | } |
| 373 | |
| 374 | // If a reuseObjTag dependency exists then this module is reusing the objects (generally the shared variant |
| 375 | // reusing objects from the static variant), and doesn't need to compile any sources of its own. |
| 376 | var srcs []string |
| 377 | if !reuseObjs { |
| 378 | srcs = compiler.Properties.Srcs.GetOrDefault(ctx, nil) |
| 379 | exclude_srcs := compiler.Properties.Exclude_srcs.GetOrDefault(ctx, nil) |
| 380 | compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, srcs, exclude_srcs) |
| 381 | compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...) |
| 382 | } |
Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 383 | |
Cole Faust | e96c16a | 2024-06-13 14:51:14 -0700 | [diff] [blame] | 384 | cflags := compiler.Properties.Cflags.GetOrDefault(ctx, nil) |
Aleks Todorov | 0384c97 | 2024-07-26 13:41:13 +0100 | [diff] [blame] | 385 | cppflags := compiler.Properties.Cppflags.GetOrDefault(ctx, nil) |
Cole Faust | e96c16a | 2024-06-13 14:51:14 -0700 | [diff] [blame] | 386 | CheckBadCompilerFlags(ctx, "cflags", cflags) |
Aleks Todorov | 0384c97 | 2024-07-26 13:41:13 +0100 | [diff] [blame] | 387 | CheckBadCompilerFlags(ctx, "cppflags", cppflags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 388 | CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags) |
| 389 | CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags) |
Jiyong Park | 4a2dcb5 | 2018-05-24 16:44:14 +0900 | [diff] [blame] | 390 | CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags) |
Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 391 | CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags) |
Jiyong Park | 4a2dcb5 | 2018-05-24 16:44:14 +0900 | [diff] [blame] | 392 | CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags) |
Christopher Ferris | e0202c4 | 2023-07-27 17:06:46 -0700 | [diff] [blame] | 393 | CheckBadCompilerFlags(ctx, "ramdisk.cflags", compiler.Properties.Target.Ramdisk.Cflags) |
Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 394 | CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cflags) |
Jiyong Park | a592b6f | 2021-07-16 16:05:50 +0900 | [diff] [blame] | 395 | CheckBadCompilerFlags(ctx, "platform.cflags", compiler.Properties.Target.Platform.Cflags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 396 | |
Colin Cross | 0b9f31f | 2019-02-28 11:00:01 -0800 | [diff] [blame] | 397 | esc := proptools.NinjaAndShellEscapeList |
Colin Cross | 4b963f8 | 2016-09-29 14:06:02 -0700 | [diff] [blame] | 398 | |
Cole Faust | e96c16a | 2024-06-13 14:51:14 -0700 | [diff] [blame] | 399 | flags.Local.CFlags = append(flags.Local.CFlags, esc(cflags)...) |
Aleks Todorov | 0384c97 | 2024-07-26 13:41:13 +0100 | [diff] [blame] | 400 | flags.Local.CppFlags = append(flags.Local.CppFlags, esc(cppflags)...) |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 401 | flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...) |
| 402 | flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...) |
| 403 | flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...) |
Dan Willemsen | 4e0aa23 | 2019-04-10 22:59:54 -0700 | [diff] [blame] | 404 | |
| 405 | flags.Yacc = compiler.Properties.Yacc |
Matthias Maennich | 22fd4d1 | 2020-07-15 10:58:56 +0200 | [diff] [blame] | 406 | flags.Lex = compiler.Properties.Lex |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 407 | |
kellyhung | d62ea30 | 2024-05-19 21:16:07 +0800 | [diff] [blame] | 408 | flags.ClangVerify = compiler.Properties.Clang_verify |
| 409 | if compiler.Properties.Clang_verify { |
| 410 | flags.Local.CFlags = append(flags.Local.CFlags, "-Xclang", "-verify") |
| 411 | } |
| 412 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 413 | // Include dir cflags |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 414 | localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs) |
Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 415 | if len(localIncludeDirs) > 0 { |
Colin Cross | dad8c95 | 2017-04-26 14:55:27 -0700 | [diff] [blame] | 416 | f := includeDirsToFlags(localIncludeDirs) |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 417 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, f) |
| 418 | flags.Local.YasmFlags = append(flags.Local.YasmFlags, f) |
Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 419 | } |
| 420 | rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs) |
| 421 | if len(rootIncludeDirs) > 0 { |
Colin Cross | dad8c95 | 2017-04-26 14:55:27 -0700 | [diff] [blame] | 422 | f := includeDirsToFlags(rootIncludeDirs) |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 423 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, f) |
| 424 | flags.Local.YasmFlags = append(flags.Local.YasmFlags, f) |
Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 425 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 426 | |
Liz Kammer | a4aa430 | 2021-03-18 16:56:36 -0400 | [diff] [blame] | 427 | if compiler.includeBuildDirectory() { |
Yi Kong | 950e0ba | 2019-10-08 02:27:17 -0700 | [diff] [blame] | 428 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath) |
| 429 | flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath) |
Dan Albert | 899c23e | 2018-12-06 11:04:03 -0800 | [diff] [blame] | 430 | } |
Colin Cross | c319948 | 2017-03-30 15:03:04 -0700 | [diff] [blame] | 431 | |
Kiyoung Kim | aa39480 | 2024-01-08 12:55:45 +0900 | [diff] [blame] | 432 | if !(ctx.useSdk() || ctx.InVendorOrProduct()) || ctx.Host() { |
Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 433 | flags.SystemIncludeFlags = append(flags.SystemIncludeFlags, |
| 434 | "${config.CommonGlobalIncludes}", |
Orion Hodson | 5cffce1 | 2020-05-27 12:47:32 +0000 | [diff] [blame] | 435 | tc.IncludeFlags()) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 436 | } |
| 437 | |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 438 | if ctx.useSdk() { |
Dan Albert | fac114b | 2018-11-14 21:22:00 -0800 | [diff] [blame] | 439 | // TODO: Switch to --sysroot. |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 440 | // The NDK headers are installed to a common sysroot. While a more |
| 441 | // typical Soong approach would be to only make the headers for the |
| 442 | // library you're using available, we're trying to emulate the NDK |
| 443 | // behavior here, and the NDK always has all the NDK headers available. |
Colin Cross | c319948 | 2017-03-30 15:03:04 -0700 | [diff] [blame] | 444 | flags.SystemIncludeFlags = append(flags.SystemIncludeFlags, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 445 | "-isystem "+getCurrentIncludePath(ctx).String(), |
Chih-Hung Hsieh | 1e7d1bf | 2018-03-15 18:44:57 -0700 | [diff] [blame] | 446 | "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String()) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 447 | } |
| 448 | |
Kiyoung Kim | aa39480 | 2024-01-08 12:55:45 +0900 | [diff] [blame] | 449 | if ctx.InVendorOrProduct() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 450 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__") |
Justin Yun | 13decfb | 2021-03-08 19:25:55 +0900 | [diff] [blame] | 451 | if ctx.inVendor() { |
| 452 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR__") |
| 453 | } else if ctx.inProduct() { |
| 454 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_PRODUCT__") |
| 455 | } |
Justin Yun | 791d422 | 2024-09-24 11:10:49 +0900 | [diff] [blame] | 456 | |
| 457 | // Define __ANDROID_VENDOR_API__ for both product and vendor variants |
| 458 | // because they both use the same LLNDK libraries. |
| 459 | vendorApiLevel := ctx.Config().VendorApiLevel() |
| 460 | if vendorApiLevel == "" { |
| 461 | // TODO(b/314036847): This is a fallback for UDC targets. |
| 462 | // This must be a build failure when UDC is no longer built |
| 463 | // from this source tree. |
| 464 | vendorApiLevel = ctx.Config().PlatformSdkVersion().String() |
| 465 | } |
| 466 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR_API__="+vendorApiLevel) |
Dan Willemsen | b916b80 | 2017-03-19 13:44:32 -0700 | [diff] [blame] | 467 | } |
| 468 | |
Jiyong Park | d54aee5 | 2018-06-09 01:32:54 +0900 | [diff] [blame] | 469 | if ctx.inRecovery() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 470 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__") |
Jiyong Park | d54aee5 | 2018-06-09 01:32:54 +0900 | [diff] [blame] | 471 | } |
| 472 | |
David Anderson | 2c8075c | 2022-02-16 21:53:13 -0800 | [diff] [blame] | 473 | if ctx.inRecovery() || ctx.inRamdisk() || ctx.inVendorRamdisk() { |
| 474 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RAMDISK__") |
| 475 | } |
| 476 | |
Colin Cross | e07f231 | 2020-08-13 11:24:56 -0700 | [diff] [blame] | 477 | if ctx.apexVariationName() != "" { |
Jooyung Han | c87a059 | 2020-03-02 17:44:33 +0900 | [diff] [blame] | 478 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__") |
Jiyong Park | 58e364a | 2019-01-19 19:24:06 +0900 | [diff] [blame] | 479 | } |
| 480 | |
Victor Khimenko | 1a31f80 | 2020-09-17 03:07:31 +0200 | [diff] [blame] | 481 | if ctx.Target().NativeBridge == android.NativeBridgeEnabled { |
| 482 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_NATIVE_BRIDGE__") |
| 483 | } |
| 484 | |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 485 | instructionSet := String(compiler.Properties.Instruction_set) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 486 | if flags.RequiredInstructionSet != "" { |
| 487 | instructionSet = flags.RequiredInstructionSet |
| 488 | } |
Colin Cross | 33bac24 | 2021-07-14 17:03:16 -0700 | [diff] [blame] | 489 | instructionSetFlags, err := tc.InstructionSetFlags(instructionSet) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 490 | if err != nil { |
| 491 | ctx.ModuleErrorf("%s", err) |
| 492 | } |
| 493 | |
Alix Espino | ef47e54 | 2022-09-14 19:10:51 +0000 | [diff] [blame] | 494 | if !ctx.DeviceConfig().BuildBrokenClangCFlags() && len(compiler.Properties.Clang_cflags) != 0 { |
| 495 | ctx.PropertyErrorf("clang_cflags", "property is deprecated, see Changes.md file") |
| 496 | } else { |
| 497 | CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags) |
| 498 | } |
| 499 | if !ctx.DeviceConfig().BuildBrokenClangAsFlags() && len(compiler.Properties.Clang_asflags) != 0 { |
| 500 | ctx.PropertyErrorf("clang_asflags", "property is deprecated, see Changes.md file") |
| 501 | } else { |
| 502 | CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags) |
| 503 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 504 | |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 505 | flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags) |
Alix Espino | ef47e54 | 2022-09-14 19:10:51 +0000 | [diff] [blame] | 506 | if !ctx.DeviceConfig().BuildBrokenClangCFlags() { |
| 507 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...) |
| 508 | } |
| 509 | if !ctx.DeviceConfig().BuildBrokenClangAsFlags() { |
| 510 | flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...) |
| 511 | } |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 512 | flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags) |
| 513 | flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags) |
| 514 | flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 515 | |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 516 | target := "-target " + tc.ClangTriple() |
Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 517 | if ctx.Os().Class == android.Device { |
Jiyong Park | a008fb0 | 2021-03-16 17:15:53 +0900 | [diff] [blame] | 518 | version := ctx.minSdkVersion() |
Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 519 | if version == "" || version == "current" { |
Dan Albert | 0b176c8 | 2020-07-23 16:43:25 -0700 | [diff] [blame] | 520 | target += strconv.Itoa(android.FutureApiLevelInt) |
Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 521 | } else { |
Vinh Tran | f192474 | 2022-06-24 16:40:11 -0400 | [diff] [blame] | 522 | apiLevel := nativeApiLevelOrPanic(ctx, version) |
Elliott Hughes | a19d959 | 2023-12-13 12:10:28 -0800 | [diff] [blame] | 523 | target += strconv.Itoa(apiLevel.FinalOrFutureInt()) |
Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | |
AdityaK | 6cfd07e | 2024-01-31 14:31:20 -0800 | [diff] [blame] | 527 | // bpf targets don't need the default target triple. b/308826679 |
| 528 | if proptools.Bool(compiler.Properties.Bpf_target) { |
| 529 | target = "--target=bpf" |
| 530 | } |
| 531 | |
Chih-Hung Hsieh | 57da826 | 2022-02-15 22:48:04 -0800 | [diff] [blame] | 532 | flags.Global.CFlags = append(flags.Global.CFlags, target) |
| 533 | flags.Global.AsFlags = append(flags.Global.AsFlags, target) |
| 534 | flags.Global.LdFlags = append(flags.Global.LdFlags, target) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 535 | |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 536 | hod := "Host" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 537 | if ctx.Os().Class == android.Device { |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 538 | hod = "Device" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 539 | } |
| 540 | |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 541 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags) |
| 542 | flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...) |
| 543 | flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Global.CppFlags...) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 544 | |
Colin Cross | 33bac24 | 2021-07-14 17:03:16 -0700 | [diff] [blame] | 545 | flags.Global.AsFlags = append(flags.Global.AsFlags, tc.Asflags()) |
Colin Cross | 0523ba2 | 2021-07-14 18:45:05 -0700 | [diff] [blame] | 546 | flags.Global.CppFlags = append([]string{"${config.CommonGlobalCppflags}"}, flags.Global.CppFlags...) |
AdityaK | 6cfd07e | 2024-01-31 14:31:20 -0800 | [diff] [blame] | 547 | |
| 548 | // bpf targets don't need the target specific toolchain cflags. b/308826679 |
| 549 | if !proptools.Bool(compiler.Properties.Bpf_target) { |
| 550 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.Cflags()) |
| 551 | } |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 552 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, |
Colin Cross | 0523ba2 | 2021-07-14 18:45:05 -0700 | [diff] [blame] | 553 | "${config.CommonGlobalCflags}", |
| 554 | fmt.Sprintf("${config.%sGlobalCflags}", hod)) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 555 | |
Chris Wailes | b2703ad | 2021-07-30 13:25:42 -0700 | [diff] [blame] | 556 | if android.IsThirdPartyPath(modulePath) { |
Colin Cross | 0523ba2 | 2021-07-14 18:45:05 -0700 | [diff] [blame] | 557 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "${config.ExternalCflags}") |
Yi Kong | cc80f8d | 2018-06-06 14:42:44 -0700 | [diff] [blame] | 558 | } |
| 559 | |
Frederick Mayle | 8e8f860 | 2024-06-06 14:55:07 -0700 | [diff] [blame] | 560 | if Bool(compiler.Properties.Rtti) { |
| 561 | flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti") |
| 562 | } else { |
| 563 | flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti") |
Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 564 | } |
| 565 | |
Liz Kammer | e4d1bda | 2022-06-22 21:02:08 +0000 | [diff] [blame] | 566 | flags.Global.AsFlags = append(flags.Global.AsFlags, "${config.CommonGlobalAsflags}") |
Colin Cross | cdcb680 | 2022-06-09 11:07:01 -0700 | [diff] [blame] | 567 | |
Colin Cross | 33bac24 | 2021-07-14 17:03:16 -0700 | [diff] [blame] | 568 | flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags()) |
Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 569 | |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 570 | flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags()) |
Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 571 | |
AdityaK | 6cfd07e | 2024-01-31 14:31:20 -0800 | [diff] [blame] | 572 | // bpf targets don't need the target specific toolchain cflags. b/308826679 |
| 573 | if !proptools.Bool(compiler.Properties.Bpf_target) { |
| 574 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainCflags()) |
| 575 | } |
| 576 | |
Chris Parsons | 79bd2b7 | 2021-11-29 17:52:41 -0500 | [diff] [blame] | 577 | cStd := parseCStd(compiler.Properties.C_std) |
Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 578 | cppStd := parseCppStd(compiler.Properties.Cpp_std) |
Elliott Hughes | 5789ca9 | 2018-02-16 17:15:19 -0800 | [diff] [blame] | 579 | |
Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 580 | cStd, cppStd = maybeReplaceGnuToC(compiler.Properties.Gnu_extensions, cStd, cppStd) |
Elliott Hughes | 5789ca9 | 2018-02-16 17:15:19 -0800 | [diff] [blame] | 581 | |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 582 | flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...) |
| 583 | flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...) |
Elliott Hughes | 5789ca9 | 2018-02-16 17:15:19 -0800 | [diff] [blame] | 584 | |
Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 585 | if ctx.inVendor() { |
| 586 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...) |
| 587 | } |
| 588 | |
| 589 | if ctx.inProduct() { |
Justin Yun | 6977e8a | 2020-10-29 18:24:11 +0900 | [diff] [blame] | 590 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Product.Cflags)...) |
Jiyong Park | a622de8 | 2017-08-10 13:33:27 +0900 | [diff] [blame] | 591 | } |
| 592 | |
Jiyong Park | 4a2dcb5 | 2018-05-24 16:44:14 +0900 | [diff] [blame] | 593 | if ctx.inRecovery() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 594 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...) |
Jiyong Park | 4a2dcb5 | 2018-05-24 16:44:14 +0900 | [diff] [blame] | 595 | } |
| 596 | |
Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 597 | if ctx.inVendorRamdisk() { |
| 598 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cflags)...) |
| 599 | } |
Christopher Ferris | e0202c4 | 2023-07-27 17:06:46 -0700 | [diff] [blame] | 600 | if ctx.inRamdisk() { |
| 601 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Ramdisk.Cflags)...) |
| 602 | } |
Jiyong Park | a592b6f | 2021-07-16 16:05:50 +0900 | [diff] [blame] | 603 | if !ctx.useSdk() { |
| 604 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Platform.Cflags)...) |
| 605 | } |
Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 606 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 607 | // We can enforce some rules more strictly in the code we own. strict |
| 608 | // indicates if this is code that we can be stricter with. If we have |
| 609 | // rules that we want to apply to *our* code (but maybe can't for |
| 610 | // vendor/device specific things), we could extend this to be a ternary |
| 611 | // value. |
| 612 | strict := true |
Yi Kong | 950e0ba | 2019-10-08 02:27:17 -0700 | [diff] [blame] | 613 | if strings.HasPrefix(modulePath, "external/") { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 614 | strict = false |
| 615 | } |
| 616 | |
| 617 | // Can be used to make some annotations stricter for code we can fix |
| 618 | // (such as when we mark functions as deprecated). |
| 619 | if strict { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 620 | flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 621 | } |
| 622 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 623 | if compiler.hasSrcExt(ctx, ".proto") { |
Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 624 | flags = protoFlags(ctx, flags, &compiler.Proto) |
| 625 | } |
| 626 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 627 | if compiler.hasSrcExt(ctx, ".y") || compiler.hasSrcExt(ctx, ".yy") { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 628 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, |
Dan Willemsen | e1a3ce3 | 2016-11-02 20:44:08 -0700 | [diff] [blame] | 629 | "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String()) |
| 630 | } |
| 631 | |
Vinh Tran | 0958195 | 2023-05-16 16:03:20 -0400 | [diff] [blame] | 632 | if len(compiler.Properties.Aidl.Libs) > 0 && |
| 633 | (len(compiler.Properties.Aidl.Include_dirs) > 0 || len(compiler.Properties.Aidl.Local_include_dirs) > 0) { |
| 634 | ctx.ModuleErrorf("aidl.libs and (aidl.include_dirs or aidl.local_include_dirs) can't be set at the same time. For aidl headers, please only use aidl.libs prop") |
| 635 | } |
| 636 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 637 | if compiler.hasAidl(ctx, deps) { |
Jooyung Han | e197d8b | 2021-01-05 10:33:16 +0900 | [diff] [blame] | 638 | flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...) |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 639 | if len(compiler.Properties.Aidl.Local_include_dirs) > 0 { |
| 640 | localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs) |
| 641 | flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs)) |
| 642 | } |
| 643 | if len(compiler.Properties.Aidl.Include_dirs) > 0 { |
| 644 | rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs) |
| 645 | flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs)) |
| 646 | } |
| 647 | |
Vinh Tran | 367d89d | 2023-04-28 11:21:25 -0400 | [diff] [blame] | 648 | var rootAidlIncludeDirs android.Paths |
| 649 | for _, aidlLibraryInfo := range deps.AidlLibraryInfos { |
| 650 | rootAidlIncludeDirs = append(rootAidlIncludeDirs, aidlLibraryInfo.IncludeDirs.ToList()...) |
| 651 | } |
| 652 | if len(rootAidlIncludeDirs) > 0 { |
| 653 | flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs)) |
| 654 | } |
| 655 | |
Zim | 3c3b416 | 2022-09-02 12:45:05 +0100 | [diff] [blame] | 656 | if proptools.BoolDefault(compiler.Properties.Aidl.Generate_traces, true) { |
Martijn Coenen | eab1564 | 2018-03-09 09:29:59 +0100 | [diff] [blame] | 657 | flags.aidlFlags = append(flags.aidlFlags, "-t") |
| 658 | } |
| 659 | |
Jooyung Han | 07f70c0 | 2021-11-06 07:08:45 +0900 | [diff] [blame] | 660 | aidlMinSdkVersion := ctx.minSdkVersion() |
| 661 | if aidlMinSdkVersion == "" { |
| 662 | aidlMinSdkVersion = "platform_apis" |
| 663 | } |
| 664 | flags.aidlFlags = append(flags.aidlFlags, "--min_sdk_version="+aidlMinSdkVersion) |
| 665 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 666 | if compiler.hasSrcExt(ctx, ".aidl") { |
Vinh Tran | 0958195 | 2023-05-16 16:03:20 -0400 | [diff] [blame] | 667 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, |
| 668 | "-I"+android.PathForModuleGen(ctx, "aidl").String()) |
| 669 | } |
| 670 | if len(deps.AidlLibraryInfos) > 0 { |
| 671 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, |
| 672 | "-I"+android.PathForModuleGen(ctx, "aidl_library").String()) |
| 673 | } |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 674 | } |
| 675 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 676 | if compiler.hasSrcExt(ctx, ".rscript") || compiler.hasSrcExt(ctx, ".fs") { |
Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 677 | flags = rsFlags(ctx, flags, &compiler.Properties) |
| 678 | } |
| 679 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 680 | if compiler.hasSrcExt(ctx, ".sysprop") { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 681 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, |
Inseob Kim | 21f2690 | 2018-09-06 00:55:20 +0900 | [diff] [blame] | 682 | "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String()) |
| 683 | } |
| 684 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 685 | if len(srcs) > 0 { |
Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 686 | module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName() |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 687 | if inList("-Wno-error", flags.Local.CFlags) || inList("-Wno-error", flags.Local.CppFlags) { |
Colin Cross | 571cccf | 2019-02-04 11:22:08 -0800 | [diff] [blame] | 688 | addToModuleList(ctx, modulesUsingWnoErrorKey, module) |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 689 | } else if !inList("-Werror", flags.Local.CFlags) && !inList("-Werror", flags.Local.CppFlags) { |
Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 690 | if warningsAreAllowed(ctx.ModuleDir()) { |
Yi Kong | de93647 | 2022-05-19 20:11:10 +0800 | [diff] [blame] | 691 | addToModuleList(ctx, modulesWarningsAllowedKey, module) |
Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 692 | } else { |
Elliott Hughes | ed4a27b | 2022-05-18 13:15:00 -0700 | [diff] [blame] | 693 | flags.Local.CFlags = append([]string{"-Werror"}, flags.Local.CFlags...) |
Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 694 | } |
| 695 | } |
| 696 | } |
| 697 | |
Pirama Arumuga Nainar | fadb7b5 | 2017-12-19 23:08:09 -0800 | [diff] [blame] | 698 | if Bool(compiler.Properties.Openmp) { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 699 | flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp") |
Pirama Arumuga Nainar | fadb7b5 | 2017-12-19 23:08:09 -0800 | [diff] [blame] | 700 | } |
| 701 | |
Yi Kong | 5786f5c | 2024-05-28 02:22:34 +0900 | [diff] [blame] | 702 | if ctx.optimizeForSize() { |
| 703 | flags.Local.CFlags = append(flags.Local.CFlags, "-Oz") |
Florian Mayer | 7319cff | 2024-10-14 14:51:00 -0700 | [diff] [blame] | 704 | if !ctx.Config().IsEnvFalse("THINLTO_USE_MLGO") { |
| 705 | flags.Local.LdFlags = append(flags.Local.LdFlags, "-Wl,-mllvm,-enable-ml-inliner=release") |
| 706 | } |
Yi Kong | 5786f5c | 2024-05-28 02:22:34 +0900 | [diff] [blame] | 707 | } |
| 708 | |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 709 | // Exclude directories from manual binder interface allowed list. |
Ivan Lozano | d094d40 | 2019-11-26 10:32:50 -0800 | [diff] [blame] | 710 | //TODO(b/145621474): Move this check into IInterface.h when clang-tidy no longer uses absolute paths. |
Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 711 | if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) { |
Ivan Lozano | d094d40 | 2019-11-26 10:32:50 -0800 | [diff] [blame] | 712 | flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES") |
| 713 | } |
| 714 | |
Luis Useche | 342fa6b | 2024-04-01 19:33:18 -0700 | [diff] [blame] | 715 | flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverrideGlobalCflags}") |
| 716 | |
| 717 | if flags.Toolchain.Is64Bit() { |
| 718 | flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverride64GlobalCflags}") |
| 719 | } |
| 720 | |
| 721 | if android.IsThirdPartyPath(ctx.ModuleDir()) { |
| 722 | flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverrideExternalGlobalCflags}") |
| 723 | } |
| 724 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 725 | return flags |
| 726 | } |
| 727 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 728 | func (compiler *baseCompiler) hasSrcExt(ctx BaseModuleContext, ext string) bool { |
Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 729 | for _, src := range compiler.srcsBeforeGen { |
| 730 | if src.Ext() == ext { |
| 731 | return true |
| 732 | } |
| 733 | } |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 734 | for _, src := range compiler.Properties.Srcs.GetOrDefault(ctx, nil) { |
Dan Willemsen | e1a3ce3 | 2016-11-02 20:44:08 -0700 | [diff] [blame] | 735 | if filepath.Ext(src) == ext { |
Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 736 | return true |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | return false |
| 741 | } |
| 742 | |
Yifan Hong | f2ede7a | 2020-09-09 18:48:40 -0700 | [diff] [blame] | 743 | var invalidDefineCharRegex = regexp.MustCompile("[^a-zA-Z0-9_]") |
| 744 | |
Jooyung Han | 7798857 | 2019-10-18 16:26:16 +0900 | [diff] [blame] | 745 | // makeDefineString transforms a name of an APEX module into a value to be used as value for C define |
| 746 | // For example, com.android.foo => COM_ANDROID_FOO |
| 747 | func makeDefineString(name string) string { |
Yifan Hong | f2ede7a | 2020-09-09 18:48:40 -0700 | [diff] [blame] | 748 | return invalidDefineCharRegex.ReplaceAllString(strings.ToUpper(name), "_") |
Jooyung Han | 7798857 | 2019-10-18 16:26:16 +0900 | [diff] [blame] | 749 | } |
| 750 | |
Colin Cross | 948f0cb | 2016-10-17 14:24:56 -0700 | [diff] [blame] | 751 | var gnuToCReplacer = strings.NewReplacer("gnu", "c") |
| 752 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 753 | func ndkPathDeps(ctx ModuleContext) android.Paths { |
Dan Albert | 92fe740 | 2020-07-15 13:33:30 -0700 | [diff] [blame] | 754 | if ctx.Module().(*Module).IsSdkVariant() { |
Chih-Hung Hsieh | f6ca1b9 | 2021-12-05 18:02:50 -0800 | [diff] [blame] | 755 | // The NDK sysroot timestamp file depends on all the NDK sysroot header files |
| 756 | // for compiling src to obj files. |
| 757 | return android.Paths{getNdkHeadersTimestampFile(ctx)} |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 758 | } |
| 759 | return nil |
| 760 | } |
| 761 | |
Cole Faust | 96a692b | 2024-08-08 14:47:51 -0700 | [diff] [blame] | 762 | func (compiler *baseCompiler) hasAidl(ctx BaseModuleContext, deps PathDeps) bool { |
| 763 | return len(deps.AidlLibraryInfos) > 0 || compiler.hasSrcExt(ctx, ".aidl") |
Vinh Tran | 367d89d | 2023-04-28 11:21:25 -0400 | [diff] [blame] | 764 | } |
| 765 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 766 | func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects { |
Inseob Kim | d110f87 | 2019-12-06 13:15:38 +0900 | [diff] [blame] | 767 | pathDeps := deps.GeneratedDeps |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 768 | pathDeps = append(pathDeps, ndkPathDeps(ctx)...) |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 769 | |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 770 | buildFlags := flagsToBuilderFlags(flags) |
| 771 | |
Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 772 | srcs := append(android.Paths(nil), compiler.srcsBeforeGen...) |
| 773 | |
Vinh Tran | 367d89d | 2023-04-28 11:21:25 -0400 | [diff] [blame] | 774 | srcs, genDeps, info := genSources(ctx, deps.AidlLibraryInfos, srcs, buildFlags) |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 775 | pathDeps = append(pathDeps, genDeps...) |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 776 | |
Pirama Arumuga Nainar | 70ba5a3 | 2017-12-19 15:11:01 -0800 | [diff] [blame] | 777 | compiler.pathDeps = pathDeps |
Paul Duffin | 33056e8 | 2021-02-19 13:49:08 +0000 | [diff] [blame] | 778 | compiler.generatedSourceInfo = info |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 779 | compiler.cFlagsDeps = flags.CFlagsDeps |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 780 | |
Fabien Sanglard | d61f1f4 | 2017-01-10 16:21:22 -0800 | [diff] [blame] | 781 | // Save src, buildFlags and context |
| 782 | compiler.srcs = srcs |
| 783 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 784 | // Compile files listed in c.Properties.Srcs into objects |
Chih-Hung Hsieh | 769a51c | 2021-09-17 17:18:39 -0700 | [diff] [blame] | 785 | objs := compileObjs(ctx, buildFlags, "", srcs, |
JaeMan Park | 3dba4d2 | 2024-01-05 15:29:48 +0900 | [diff] [blame] | 786 | append(android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_disabled_srcs), compiler.generatedSources...), |
Chih-Hung Hsieh | 9db8a0c | 2022-02-17 12:54:45 -0800 | [diff] [blame] | 787 | android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_timeout_srcs), |
Chih-Hung Hsieh | 769a51c | 2021-09-17 17:18:39 -0700 | [diff] [blame] | 788 | pathDeps, compiler.cFlagsDeps) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 789 | |
| 790 | if ctx.Failed() { |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 791 | return Objects{} |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 792 | } |
| 793 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 794 | return objs |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | // Compile a list of source files into objects a specified subdirectory |
Chih-Hung Hsieh | 7540a78 | 2022-01-08 19:56:09 -0800 | [diff] [blame] | 798 | func compileObjs(ctx ModuleContext, flags builderFlags, subdir string, |
Chih-Hung Hsieh | 9db8a0c | 2022-02-17 12:54:45 -0800 | [diff] [blame] | 799 | srcFiles, noTidySrcs, timeoutTidySrcs, pathDeps android.Paths, cFlagsDeps android.Paths) Objects { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 800 | |
Chih-Hung Hsieh | 9db8a0c | 2022-02-17 12:54:45 -0800 | [diff] [blame] | 801 | return transformSourceToObj(ctx, subdir, srcFiles, noTidySrcs, timeoutTidySrcs, flags, pathDeps, cFlagsDeps) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 802 | } |
Yi Kong | 950e0ba | 2019-10-08 02:27:17 -0700 | [diff] [blame] | 803 | |
Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 804 | // Properties for rust_bindgen related to generating rust bindings. |
| 805 | // This exists here so these properties can be included in a cc_default |
| 806 | // which can be used in both cc and rust modules. |
| 807 | type RustBindgenClangProperties struct { |
| 808 | // list of directories relative to the Blueprints file that will |
| 809 | // be added to the include path using -I |
| 810 | Local_include_dirs []string `android:"arch_variant,variant_prepend"` |
| 811 | |
| 812 | // list of static libraries that provide headers for this binding. |
Cole Faust | f0006e7 | 2024-08-19 14:39:19 -0700 | [diff] [blame] | 813 | Static_libs proptools.Configurable[[]string] `android:"arch_variant,variant_prepend"` |
Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 814 | |
| 815 | // list of shared libraries that provide headers for this binding. |
Cole Faust | f0006e7 | 2024-08-19 14:39:19 -0700 | [diff] [blame] | 816 | Shared_libs proptools.Configurable[[]string] `android:"arch_variant"` |
Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 817 | |
Ivan Lozano | 9b44383 | 2020-11-17 13:39:30 -0500 | [diff] [blame] | 818 | // List of libraries which export include paths required for this module |
Cole Faust | f0006e7 | 2024-08-19 14:39:19 -0700 | [diff] [blame] | 819 | Header_libs proptools.Configurable[[]string] `android:"arch_variant,variant_prepend"` |
Ivan Lozano | 9b44383 | 2020-11-17 13:39:30 -0500 | [diff] [blame] | 820 | |
Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 821 | // list of clang flags required to correctly interpret the headers. |
Cole Faust | e96c16a | 2024-06-13 14:51:14 -0700 | [diff] [blame] | 822 | Cflags proptools.Configurable[[]string] `android:"arch_variant"` |
Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 823 | |
| 824 | // list of c++ specific clang flags required to correctly interpret the headers. |
| 825 | // This is provided primarily to make sure cppflags defined in cc_defaults are pulled in. |
Aleks Todorov | 0384c97 | 2024-07-26 13:41:13 +0100 | [diff] [blame] | 826 | Cppflags proptools.Configurable[[]string] `android:"arch_variant"` |
Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 827 | |
| 828 | // C standard version to use. Can be a specific version (such as "gnu11"), |
| 829 | // "experimental" (which will use draft versions like C1x when available), |
| 830 | // or the empty string (which will use the default). |
| 831 | // |
| 832 | // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this |
| 833 | // to "default" will use the build system default version. This cannot be set at the same time as cpp_std. |
| 834 | C_std *string |
| 835 | |
| 836 | // C++ standard version to use. Can be a specific version (such as |
| 837 | // "gnu++11"), "experimental" (which will use draft versions like C++1z when |
| 838 | // available), or the empty string (which will use the default). |
| 839 | // |
| 840 | // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this |
| 841 | // to "default" will use the build system default version. This cannot be set at the same time as c_std. |
| 842 | Cpp_std *string |
| 843 | |
| 844 | //TODO(b/161141999) Add support for headers from cc_library_header modules. |
| 845 | } |