| 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". | 
| Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 40 | Srcs []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 | 
| Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 50 | Exclude_srcs []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. | 
|  | 53 | Cflags []string `android:"arch_variant"` | 
|  | 54 |  | 
|  | 55 | // list of module-specific flags that will be used for C++ compiles | 
|  | 56 | Cppflags []string `android:"arch_variant"` | 
|  | 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. | 
| Colin Cross | 0ed579e | 2021-06-29 00:51:12 +0000 | [diff] [blame] | 101 | Generated_headers []string `android:"arch_variant,variant_prepend"` | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 102 |  | 
|  | 103 | // pass -frtti instead of -fno-rtti | 
|  | 104 | Rtti *bool | 
|  | 105 |  | 
| Dan Albert | 043833c | 2017-02-03 16:13:38 -0800 | [diff] [blame] | 106 | // C standard version to use. Can be a specific version (such as "gnu11"), | 
|  | 107 | // "experimental" (which will use draft versions like C1x when available), | 
|  | 108 | // or the empty string (which will use the default). | 
| Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 109 | C_std *string | 
| Dan Albert | 043833c | 2017-02-03 16:13:38 -0800 | [diff] [blame] | 110 |  | 
|  | 111 | // C++ standard version to use. Can be a specific version (such as | 
|  | 112 | // "gnu++11"), "experimental" (which will use draft versions like C++1z when | 
|  | 113 | // available), or the empty string (which will use the default). | 
| Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 114 | Cpp_std *string | 
| Dan Albert | 043833c | 2017-02-03 16:13:38 -0800 | [diff] [blame] | 115 |  | 
| Colin Cross | 948f0cb | 2016-10-17 14:24:56 -0700 | [diff] [blame] | 116 | // if set to false, use -std=c++* instead of -std=gnu++* | 
|  | 117 | Gnu_extensions *bool | 
|  | 118 |  | 
| Dan Willemsen | 4e0aa23 | 2019-04-10 22:59:54 -0700 | [diff] [blame] | 119 | Yacc *YaccProperties | 
| Matthias Maennich | 22fd4d1 | 2020-07-15 10:58:56 +0200 | [diff] [blame] | 120 | Lex  *LexProperties | 
| Dan Willemsen | 4e0aa23 | 2019-04-10 22:59:54 -0700 | [diff] [blame] | 121 |  | 
| Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 122 | Aidl struct { | 
|  | 123 | // list of directories that will be added to the aidl include paths. | 
|  | 124 | Include_dirs []string | 
|  | 125 |  | 
|  | 126 | // list of directories relative to the Blueprints file that will | 
|  | 127 | // be added to the aidl include paths. | 
|  | 128 | Local_include_dirs []string | 
| Martijn Coenen | eab1564 | 2018-03-09 09:29:59 +0100 | [diff] [blame] | 129 |  | 
|  | 130 | // whether to generate traces (for systrace) for this interface | 
|  | 131 | Generate_traces *bool | 
| Jooyung Han | e197d8b | 2021-01-05 10:33:16 +0900 | [diff] [blame] | 132 |  | 
|  | 133 | // list of flags that will be passed to the AIDL compiler | 
|  | 134 | Flags []string | 
| Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 135 | } | 
|  | 136 |  | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 137 | Renderscript struct { | 
|  | 138 | // list of directories that will be added to the llvm-rs-cc include paths | 
|  | 139 | Include_dirs []string | 
|  | 140 |  | 
|  | 141 | // list of flags that will be passed to llvm-rs-cc | 
|  | 142 | Flags []string | 
|  | 143 |  | 
|  | 144 | // Renderscript API level to target | 
|  | 145 | Target_api *string | 
|  | 146 | } | 
|  | 147 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 148 | Debug, Release struct { | 
|  | 149 | // list of module-specific flags that will be used for C and C++ compiles in debug or | 
|  | 150 | // release builds | 
|  | 151 | Cflags []string `android:"arch_variant"` | 
|  | 152 | } `android:"arch_variant"` | 
| Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 153 |  | 
|  | 154 | Target struct { | 
| Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 155 | Vendor, Product struct { | 
|  | 156 | // list of source files that should only be used in vendor or | 
|  | 157 | // product variant of the C/C++ module. | 
| Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 158 | Srcs []string `android:"path"` | 
| Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 159 |  | 
| Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 160 | // list of source files that should not be used to build vendor | 
|  | 161 | // or product variant of the C/C++ module. | 
| Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 162 | Exclude_srcs []string `android:"path"` | 
| Jiyong Park | a622de8 | 2017-08-10 13:33:27 +0900 | [diff] [blame] | 163 |  | 
| Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 164 | // List of additional cflags that should be used to build vendor | 
|  | 165 | // or product variant of the C/C++ module. | 
| Jiyong Park | a622de8 | 2017-08-10 13:33:27 +0900 | [diff] [blame] | 166 | Cflags []string | 
| Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 167 |  | 
| Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 168 | // list of generated sources that should not be used to build | 
|  | 169 | // vendor or product variant of the C/C++ module. | 
| Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 170 | Exclude_generated_sources []string | 
| Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 171 | } | 
| Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 172 | Recovery struct { | 
|  | 173 | // list of source files that should only be used in the | 
|  | 174 | // recovery variant of the C/C++ module. | 
| Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 175 | Srcs []string `android:"path"` | 
| Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 176 |  | 
|  | 177 | // list of source files that should not be used to | 
|  | 178 | // build the recovery variant of the C/C++ module. | 
| Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 179 | Exclude_srcs []string `android:"path"` | 
| Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 180 |  | 
|  | 181 | // List of additional cflags that should be used to build the recovery | 
|  | 182 | // variant of the C/C++ module. | 
|  | 183 | Cflags []string | 
| Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 184 |  | 
|  | 185 | // list of generated sources that should not be used to | 
|  | 186 | // build the recovery variant of the C/C++ module. | 
|  | 187 | Exclude_generated_sources []string | 
| Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 188 | } | 
| Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 189 | Vendor_ramdisk struct { | 
|  | 190 | // list of source files that should not be used to | 
|  | 191 | // build the vendor ramdisk variant of the C/C++ module. | 
|  | 192 | Exclude_srcs []string `android:"path"` | 
|  | 193 |  | 
|  | 194 | // List of additional cflags that should be used to build the vendor ramdisk | 
|  | 195 | // variant of the C/C++ module. | 
|  | 196 | Cflags []string | 
|  | 197 | } | 
| Jiyong Park | a592b6f | 2021-07-16 16:05:50 +0900 | [diff] [blame] | 198 | Platform struct { | 
|  | 199 | // List of additional cflags that should be used to build the platform | 
|  | 200 | // variant of the C/C++ module. | 
|  | 201 | Cflags []string | 
|  | 202 | } | 
| Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 203 | } | 
| Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 204 |  | 
| Colin Cross | 38f794e | 2017-09-07 10:53:07 -0700 | [diff] [blame] | 205 | Proto struct { | 
|  | 206 | // Link statically against the protobuf runtime | 
| Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 207 | Static *bool `android:"arch_variant"` | 
| Colin Cross | 38f794e | 2017-09-07 10:53:07 -0700 | [diff] [blame] | 208 | } `android:"arch_variant"` | 
|  | 209 |  | 
| Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 210 | // Stores the original list of source files before being cleared by library reuse | 
|  | 211 | OriginalSrcs []string `blueprint:"mutated"` | 
| Pirama Arumuga Nainar | fadb7b5 | 2017-12-19 23:08:09 -0800 | [diff] [blame] | 212 |  | 
|  | 213 | // Build and link with OpenMP | 
|  | 214 | Openmp *bool `android:"arch_variant"` | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 215 | } | 
|  | 216 |  | 
| Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 217 | func NewBaseCompiler() *baseCompiler { | 
|  | 218 | return &baseCompiler{} | 
|  | 219 | } | 
|  | 220 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 221 | type baseCompiler struct { | 
|  | 222 | Properties BaseCompilerProperties | 
| Colin Cross | 38f794e | 2017-09-07 10:53:07 -0700 | [diff] [blame] | 223 | Proto      android.ProtoProperties | 
| Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 224 | cFlagsDeps android.Paths | 
| Pirama Arumuga Nainar | 70ba5a3 | 2017-12-19 15:11:01 -0800 | [diff] [blame] | 225 | pathDeps   android.Paths | 
| Fabien Sanglard | d61f1f4 | 2017-01-10 16:21:22 -0800 | [diff] [blame] | 226 | flags      builderFlags | 
| Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 227 |  | 
|  | 228 | // Sources that were passed to the C/C++ compiler | 
|  | 229 | srcs android.Paths | 
|  | 230 |  | 
|  | 231 | // Sources that were passed in the Android.bp file, including generated sources generated by | 
|  | 232 | // other modules and filegroups. May include source files that have not yet been translated to | 
|  | 233 | // C/C++ (.aidl, .proto, etc.) | 
|  | 234 | srcsBeforeGen android.Paths | 
| Paul Duffin | 33056e8 | 2021-02-19 13:49:08 +0000 | [diff] [blame] | 235 |  | 
|  | 236 | generatedSourceInfo | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 237 | } | 
|  | 238 |  | 
|  | 239 | var _ compiler = (*baseCompiler)(nil) | 
|  | 240 |  | 
| Fabien Sanglard | d61f1f4 | 2017-01-10 16:21:22 -0800 | [diff] [blame] | 241 | type CompiledInterface interface { | 
|  | 242 | Srcs() android.Paths | 
|  | 243 | } | 
|  | 244 |  | 
|  | 245 | func (compiler *baseCompiler) Srcs() android.Paths { | 
| Nan Zhang | e42777a | 2018-03-27 16:19:42 -0700 | [diff] [blame] | 246 | return append(android.Paths{}, compiler.srcs...) | 
| Fabien Sanglard | d61f1f4 | 2017-01-10 16:21:22 -0800 | [diff] [blame] | 247 | } | 
|  | 248 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 249 | func (compiler *baseCompiler) appendCflags(flags []string) { | 
|  | 250 | compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...) | 
|  | 251 | } | 
|  | 252 |  | 
|  | 253 | func (compiler *baseCompiler) appendAsflags(flags []string) { | 
|  | 254 | compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...) | 
|  | 255 | } | 
|  | 256 |  | 
| Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 257 | func (compiler *baseCompiler) compilerProps() []interface{} { | 
| Colin Cross | 0feb169 | 2016-11-03 14:38:52 -0700 | [diff] [blame] | 258 | return []interface{}{&compiler.Properties, &compiler.Proto} | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 259 | } | 
|  | 260 |  | 
| Liz Kammer | 135bf55 | 2021-08-11 10:46:06 -0400 | [diff] [blame] | 261 | func includeBuildDirectory(prop *bool) bool { | 
|  | 262 | return proptools.BoolDefault(prop, true) | 
|  | 263 | } | 
|  | 264 |  | 
| Liz Kammer | a4aa430 | 2021-03-18 16:56:36 -0400 | [diff] [blame] | 265 | func (compiler *baseCompiler) includeBuildDirectory() bool { | 
| Liz Kammer | 135bf55 | 2021-08-11 10:46:06 -0400 | [diff] [blame] | 266 | return includeBuildDirectory(compiler.Properties.Include_build_directory) | 
| Liz Kammer | a4aa430 | 2021-03-18 16:56:36 -0400 | [diff] [blame] | 267 | } | 
|  | 268 |  | 
| Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 269 | func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {} | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 270 |  | 
| Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 271 | func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps { | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 272 | deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...) | 
| Jooyung Han | ac07f88 | 2020-07-05 03:54:35 +0900 | [diff] [blame] | 273 | deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 274 | deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...) | 
|  | 275 |  | 
| Colin Cross | fe17f6f | 2019-03-28 19:30:56 -0700 | [diff] [blame] | 276 | android.ProtoDeps(ctx, &compiler.Proto) | 
| Dan Willemsen | e1a3ce3 | 2016-11-02 20:44:08 -0700 | [diff] [blame] | 277 | if compiler.hasSrcExt(".proto") { | 
| Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 278 | deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static)) | 
| Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 279 | } | 
|  | 280 |  | 
| Pirama Arumuga Nainar | fadb7b5 | 2017-12-19 23:08:09 -0800 | [diff] [blame] | 281 | if Bool(compiler.Properties.Openmp) { | 
|  | 282 | deps.StaticLibs = append(deps.StaticLibs, "libomp") | 
|  | 283 | } | 
|  | 284 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 285 | return deps | 
|  | 286 | } | 
|  | 287 |  | 
| Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 288 | // Return true if the module is in the WarningAllowedProjects. | 
|  | 289 | func warningsAreAllowed(subdir string) bool { | 
|  | 290 | subdir += "/" | 
| Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 291 | return android.HasAnyPrefix(subdir, config.WarningAllowedProjects) | 
| Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 292 | } | 
|  | 293 |  | 
| Colin Cross | 571cccf | 2019-02-04 11:22:08 -0800 | [diff] [blame] | 294 | func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) { | 
|  | 295 | getNamedMapForConfig(ctx.Config(), key).Store(module, true) | 
| Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 296 | } | 
|  | 297 |  | 
| Liz Kammer | a5a29de | 2022-05-25 23:19:37 -0400 | [diff] [blame] | 298 | func useGnuExtensions(gnuExtensions *bool) bool { | 
|  | 299 | return proptools.BoolDefault(gnuExtensions, true) | 
|  | 300 | } | 
|  | 301 |  | 
| Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 302 | func maybeReplaceGnuToC(gnuExtensions *bool, cStd string, cppStd string) (string, string) { | 
| Liz Kammer | a5a29de | 2022-05-25 23:19:37 -0400 | [diff] [blame] | 303 | if !useGnuExtensions(gnuExtensions) { | 
| Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 304 | cStd = gnuToCReplacer.Replace(cStd) | 
|  | 305 | cppStd = gnuToCReplacer.Replace(cppStd) | 
|  | 306 | } | 
|  | 307 | return cStd, cppStd | 
|  | 308 | } | 
|  | 309 |  | 
|  | 310 | func parseCppStd(cppStdPtr *string) string { | 
|  | 311 | cppStd := String(cppStdPtr) | 
|  | 312 | switch cppStd { | 
|  | 313 | case "": | 
| Chris Parsons | 79bd2b7 | 2021-11-29 17:52:41 -0500 | [diff] [blame] | 314 | return config.CppStdVersion | 
| Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 315 | case "experimental": | 
| Chris Parsons | 79bd2b7 | 2021-11-29 17:52:41 -0500 | [diff] [blame] | 316 | return config.ExperimentalCppStdVersion | 
|  | 317 | default: | 
|  | 318 | return cppStd | 
| Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 319 | } | 
| Chris Parsons | 79bd2b7 | 2021-11-29 17:52:41 -0500 | [diff] [blame] | 320 | } | 
|  | 321 |  | 
|  | 322 | func parseCStd(cStdPtr *string) string { | 
|  | 323 | cStd := String(cStdPtr) | 
|  | 324 | switch cStd { | 
|  | 325 | case "": | 
|  | 326 | return config.CStdVersion | 
|  | 327 | case "experimental": | 
|  | 328 | return config.ExperimentalCStdVersion | 
|  | 329 | default: | 
|  | 330 | return cStd | 
|  | 331 | } | 
| Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 332 | } | 
|  | 333 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 334 | // Create a Flags struct that collects the compile flags from global values, | 
|  | 335 | // per-target values, module type values, and per-module Blueprints properties | 
| Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 336 | func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags { | 
| Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 337 | tc := ctx.toolchain() | 
| Yi Kong | 950e0ba | 2019-10-08 02:27:17 -0700 | [diff] [blame] | 338 | modulePath := android.PathForModuleSrc(ctx).String() | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 339 |  | 
| Colin Cross | 8a49795 | 2019-03-05 22:25:09 -0800 | [diff] [blame] | 340 | compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs) | 
| Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 341 | compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...) | 
|  | 342 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 343 | CheckBadCompilerFlags(ctx, "cflags", compiler.Properties.Cflags) | 
|  | 344 | CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags) | 
|  | 345 | CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags) | 
|  | 346 | CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags) | 
| Jiyong Park | 4a2dcb5 | 2018-05-24 16:44:14 +0900 | [diff] [blame] | 347 | CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags) | 
| Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 348 | CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags) | 
| Jiyong Park | 4a2dcb5 | 2018-05-24 16:44:14 +0900 | [diff] [blame] | 349 | CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags) | 
| Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 350 | CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cflags) | 
| Jiyong Park | a592b6f | 2021-07-16 16:05:50 +0900 | [diff] [blame] | 351 | CheckBadCompilerFlags(ctx, "platform.cflags", compiler.Properties.Target.Platform.Cflags) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 352 |  | 
| Colin Cross | 0b9f31f | 2019-02-28 11:00:01 -0800 | [diff] [blame] | 353 | esc := proptools.NinjaAndShellEscapeList | 
| Colin Cross | 4b963f8 | 2016-09-29 14:06:02 -0700 | [diff] [blame] | 354 |  | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 355 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Cflags)...) | 
|  | 356 | flags.Local.CppFlags = append(flags.Local.CppFlags, esc(compiler.Properties.Cppflags)...) | 
|  | 357 | flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...) | 
|  | 358 | flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...) | 
|  | 359 | flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...) | 
| Dan Willemsen | 4e0aa23 | 2019-04-10 22:59:54 -0700 | [diff] [blame] | 360 |  | 
|  | 361 | flags.Yacc = compiler.Properties.Yacc | 
| Matthias Maennich | 22fd4d1 | 2020-07-15 10:58:56 +0200 | [diff] [blame] | 362 | flags.Lex = compiler.Properties.Lex | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 363 |  | 
|  | 364 | // Include dir cflags | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 365 | localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs) | 
| Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 366 | if len(localIncludeDirs) > 0 { | 
| Colin Cross | dad8c95 | 2017-04-26 14:55:27 -0700 | [diff] [blame] | 367 | f := includeDirsToFlags(localIncludeDirs) | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 368 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, f) | 
|  | 369 | flags.Local.YasmFlags = append(flags.Local.YasmFlags, f) | 
| Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 370 | } | 
|  | 371 | rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs) | 
|  | 372 | if len(rootIncludeDirs) > 0 { | 
| Colin Cross | dad8c95 | 2017-04-26 14:55:27 -0700 | [diff] [blame] | 373 | f := includeDirsToFlags(rootIncludeDirs) | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 374 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, f) | 
|  | 375 | flags.Local.YasmFlags = append(flags.Local.YasmFlags, f) | 
| Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 376 | } | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 377 |  | 
| Liz Kammer | a4aa430 | 2021-03-18 16:56:36 -0400 | [diff] [blame] | 378 | if compiler.includeBuildDirectory() { | 
| Yi Kong | 950e0ba | 2019-10-08 02:27:17 -0700 | [diff] [blame] | 379 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath) | 
|  | 380 | flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath) | 
| Dan Albert | 899c23e | 2018-12-06 11:04:03 -0800 | [diff] [blame] | 381 | } | 
| Colin Cross | c319948 | 2017-03-30 15:03:04 -0700 | [diff] [blame] | 382 |  | 
| Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 383 | if !(ctx.useSdk() || ctx.useVndk()) || ctx.Host() { | 
|  | 384 | flags.SystemIncludeFlags = append(flags.SystemIncludeFlags, | 
|  | 385 | "${config.CommonGlobalIncludes}", | 
| Orion Hodson | 5cffce1 | 2020-05-27 12:47:32 +0000 | [diff] [blame] | 386 | tc.IncludeFlags()) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 387 | } | 
|  | 388 |  | 
| Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 389 | if ctx.useSdk() { | 
| Dan Albert | fac114b | 2018-11-14 21:22:00 -0800 | [diff] [blame] | 390 | // TODO: Switch to --sysroot. | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 391 | // The NDK headers are installed to a common sysroot. While a more | 
|  | 392 | // typical Soong approach would be to only make the headers for the | 
|  | 393 | // library you're using available, we're trying to emulate the NDK | 
|  | 394 | // behavior here, and the NDK always has all the NDK headers available. | 
| Colin Cross | c319948 | 2017-03-30 15:03:04 -0700 | [diff] [blame] | 395 | flags.SystemIncludeFlags = append(flags.SystemIncludeFlags, | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 396 | "-isystem "+getCurrentIncludePath(ctx).String(), | 
| Chih-Hung Hsieh | 1e7d1bf | 2018-03-15 18:44:57 -0700 | [diff] [blame] | 397 | "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String()) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 398 | } | 
|  | 399 |  | 
| Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 400 | if ctx.useVndk() { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 401 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__") | 
| Justin Yun | 13decfb | 2021-03-08 19:25:55 +0900 | [diff] [blame] | 402 | if ctx.inVendor() { | 
|  | 403 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR__") | 
|  | 404 | } else if ctx.inProduct() { | 
|  | 405 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_PRODUCT__") | 
|  | 406 | } | 
| Dan Willemsen | b916b80 | 2017-03-19 13:44:32 -0700 | [diff] [blame] | 407 | } | 
|  | 408 |  | 
| Jiyong Park | d54aee5 | 2018-06-09 01:32:54 +0900 | [diff] [blame] | 409 | if ctx.inRecovery() { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 410 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__") | 
| Jiyong Park | d54aee5 | 2018-06-09 01:32:54 +0900 | [diff] [blame] | 411 | } | 
|  | 412 |  | 
| David Anderson | 2c8075c | 2022-02-16 21:53:13 -0800 | [diff] [blame] | 413 | if ctx.inRecovery() || ctx.inRamdisk() || ctx.inVendorRamdisk() { | 
|  | 414 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RAMDISK__") | 
|  | 415 | } | 
|  | 416 |  | 
| Colin Cross | e07f231 | 2020-08-13 11:24:56 -0700 | [diff] [blame] | 417 | if ctx.apexVariationName() != "" { | 
| Jooyung Han | c87a059 | 2020-03-02 17:44:33 +0900 | [diff] [blame] | 418 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__") | 
| Jooyung Han | 2428277 | 2020-03-21 23:20:55 +0900 | [diff] [blame] | 419 | if ctx.Device() { | 
| Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 420 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, | 
| Dan Albert | b19953d | 2020-11-17 15:29:36 -0800 | [diff] [blame] | 421 | fmt.Sprintf("-D__ANDROID_APEX_MIN_SDK_VERSION__=%d", | 
| Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 422 | ctx.apexSdkVersion().FinalOrFutureInt())) | 
| Jooyung Han | 2428277 | 2020-03-21 23:20:55 +0900 | [diff] [blame] | 423 | } | 
| Jiyong Park | 58e364a | 2019-01-19 19:24:06 +0900 | [diff] [blame] | 424 | } | 
|  | 425 |  | 
| Victor Khimenko | 1a31f80 | 2020-09-17 03:07:31 +0200 | [diff] [blame] | 426 | if ctx.Target().NativeBridge == android.NativeBridgeEnabled { | 
|  | 427 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_NATIVE_BRIDGE__") | 
|  | 428 | } | 
|  | 429 |  | 
| Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 430 | instructionSet := String(compiler.Properties.Instruction_set) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 431 | if flags.RequiredInstructionSet != "" { | 
|  | 432 | instructionSet = flags.RequiredInstructionSet | 
|  | 433 | } | 
| Colin Cross | 33bac24 | 2021-07-14 17:03:16 -0700 | [diff] [blame] | 434 | instructionSetFlags, err := tc.InstructionSetFlags(instructionSet) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 435 | if err != nil { | 
|  | 436 | ctx.ModuleErrorf("%s", err) | 
|  | 437 | } | 
|  | 438 |  | 
|  | 439 | CheckBadCompilerFlags(ctx, "release.cflags", compiler.Properties.Release.Cflags) | 
|  | 440 |  | 
|  | 441 | // TODO: debug | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 442 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Release.Cflags)...) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 443 |  | 
| Alix Espino | ef47e54 | 2022-09-14 19:10:51 +0000 | [diff] [blame] | 444 | if !ctx.DeviceConfig().BuildBrokenClangCFlags() && len(compiler.Properties.Clang_cflags) != 0 { | 
|  | 445 | ctx.PropertyErrorf("clang_cflags", "property is deprecated, see Changes.md file") | 
|  | 446 | } else { | 
|  | 447 | CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags) | 
|  | 448 | } | 
|  | 449 | if !ctx.DeviceConfig().BuildBrokenClangAsFlags() && len(compiler.Properties.Clang_asflags) != 0 { | 
|  | 450 | ctx.PropertyErrorf("clang_asflags", "property is deprecated, see Changes.md file") | 
|  | 451 | } else { | 
|  | 452 | CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags) | 
|  | 453 | } | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 454 |  | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 455 | flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags) | 
| Alix Espino | ef47e54 | 2022-09-14 19:10:51 +0000 | [diff] [blame] | 456 | if !ctx.DeviceConfig().BuildBrokenClangCFlags() { | 
|  | 457 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...) | 
|  | 458 | } | 
|  | 459 | if !ctx.DeviceConfig().BuildBrokenClangAsFlags() { | 
|  | 460 | flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...) | 
|  | 461 | } | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 462 | flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags) | 
|  | 463 | flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags) | 
|  | 464 | flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 465 |  | 
| Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 466 | target := "-target " + tc.ClangTriple() | 
| Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 467 | if ctx.Os().Class == android.Device { | 
| Jiyong Park | a008fb0 | 2021-03-16 17:15:53 +0900 | [diff] [blame] | 468 | version := ctx.minSdkVersion() | 
| Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 469 | if version == "" || version == "current" { | 
| Dan Albert | 0b176c8 | 2020-07-23 16:43:25 -0700 | [diff] [blame] | 470 | target += strconv.Itoa(android.FutureApiLevelInt) | 
| Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 471 | } else { | 
| Vinh Tran | f192474 | 2022-06-24 16:40:11 -0400 | [diff] [blame] | 472 | apiLevel := nativeApiLevelOrPanic(ctx, version) | 
|  | 473 | target += apiLevel.String() | 
| Peter Collingbourne | b0e6143 | 2019-07-22 16:36:06 -0700 | [diff] [blame] | 474 | } | 
|  | 475 | } | 
|  | 476 |  | 
| Chih-Hung Hsieh | 57da826 | 2022-02-15 22:48:04 -0800 | [diff] [blame] | 477 | flags.Global.CFlags = append(flags.Global.CFlags, target) | 
|  | 478 | flags.Global.AsFlags = append(flags.Global.AsFlags, target) | 
|  | 479 | flags.Global.LdFlags = append(flags.Global.LdFlags, target) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 480 |  | 
| Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 481 | hod := "Host" | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 482 | if ctx.Os().Class == android.Device { | 
| Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 483 | hod = "Device" | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 484 | } | 
|  | 485 |  | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 486 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags) | 
|  | 487 | flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...) | 
|  | 488 | 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] | 489 |  | 
| Colin Cross | 33bac24 | 2021-07-14 17:03:16 -0700 | [diff] [blame] | 490 | flags.Global.AsFlags = append(flags.Global.AsFlags, tc.Asflags()) | 
| Colin Cross | 0523ba2 | 2021-07-14 18:45:05 -0700 | [diff] [blame] | 491 | flags.Global.CppFlags = append([]string{"${config.CommonGlobalCppflags}"}, flags.Global.CppFlags...) | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 492 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, | 
| Colin Cross | 33bac24 | 2021-07-14 17:03:16 -0700 | [diff] [blame] | 493 | tc.Cflags(), | 
| Colin Cross | 0523ba2 | 2021-07-14 18:45:05 -0700 | [diff] [blame] | 494 | "${config.CommonGlobalCflags}", | 
|  | 495 | fmt.Sprintf("${config.%sGlobalCflags}", hod)) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 496 |  | 
| Chris Wailes | b2703ad | 2021-07-30 13:25:42 -0700 | [diff] [blame] | 497 | if android.IsThirdPartyPath(modulePath) { | 
| Colin Cross | 0523ba2 | 2021-07-14 18:45:05 -0700 | [diff] [blame] | 498 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, "${config.ExternalCflags}") | 
| Yi Kong | cc80f8d | 2018-06-06 14:42:44 -0700 | [diff] [blame] | 499 | } | 
|  | 500 |  | 
| Dan Willemsen | 10db384 | 2018-10-21 18:42:46 -0700 | [diff] [blame] | 501 | if tc.Bionic() { | 
| Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 502 | if Bool(compiler.Properties.Rtti) { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 503 | flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti") | 
| Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 504 | } else { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 505 | flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti") | 
| Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 506 | } | 
|  | 507 | } | 
|  | 508 |  | 
| Liz Kammer | e4d1bda | 2022-06-22 21:02:08 +0000 | [diff] [blame] | 509 | flags.Global.AsFlags = append(flags.Global.AsFlags, "${config.CommonGlobalAsflags}") | 
| Colin Cross | cdcb680 | 2022-06-09 11:07:01 -0700 | [diff] [blame] | 510 |  | 
| Colin Cross | 33bac24 | 2021-07-14 17:03:16 -0700 | [diff] [blame] | 511 | flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags()) | 
| Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 512 |  | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 513 | flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags()) | 
| Colin Cross | 87dd963 | 2017-11-03 13:31:05 -0700 | [diff] [blame] | 514 |  | 
| Colin Cross | 33bac24 | 2021-07-14 17:03:16 -0700 | [diff] [blame] | 515 | flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainCflags()) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 516 |  | 
| Chris Parsons | 79bd2b7 | 2021-11-29 17:52:41 -0500 | [diff] [blame] | 517 | cStd := parseCStd(compiler.Properties.C_std) | 
| Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 518 | cppStd := parseCppStd(compiler.Properties.Cpp_std) | 
| Elliott Hughes | 5789ca9 | 2018-02-16 17:15:19 -0800 | [diff] [blame] | 519 |  | 
| Jingwen Chen | 97b8531 | 2021-10-08 10:41:31 +0000 | [diff] [blame] | 520 | cStd, cppStd = maybeReplaceGnuToC(compiler.Properties.Gnu_extensions, cStd, cppStd) | 
| Elliott Hughes | 5789ca9 | 2018-02-16 17:15:19 -0800 | [diff] [blame] | 521 |  | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 522 | flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...) | 
|  | 523 | flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...) | 
| Elliott Hughes | 5789ca9 | 2018-02-16 17:15:19 -0800 | [diff] [blame] | 524 |  | 
| Justin Yun | 63e9ec7 | 2020-10-29 16:49:43 +0900 | [diff] [blame] | 525 | if ctx.inVendor() { | 
|  | 526 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...) | 
|  | 527 | } | 
|  | 528 |  | 
|  | 529 | if ctx.inProduct() { | 
| Justin Yun | 6977e8a | 2020-10-29 18:24:11 +0900 | [diff] [blame] | 530 | 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] | 531 | } | 
|  | 532 |  | 
| Jiyong Park | 4a2dcb5 | 2018-05-24 16:44:14 +0900 | [diff] [blame] | 533 | if ctx.inRecovery() { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 534 | 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] | 535 | } | 
|  | 536 |  | 
| Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 537 | if ctx.inVendorRamdisk() { | 
|  | 538 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cflags)...) | 
|  | 539 | } | 
| Jiyong Park | a592b6f | 2021-07-16 16:05:50 +0900 | [diff] [blame] | 540 | if !ctx.useSdk() { | 
|  | 541 | flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Platform.Cflags)...) | 
|  | 542 | } | 
| Yifan Hong | 6da33c2 | 2020-10-27 15:01:21 -0700 | [diff] [blame] | 543 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 544 | // We can enforce some rules more strictly in the code we own. strict | 
|  | 545 | // indicates if this is code that we can be stricter with. If we have | 
|  | 546 | // rules that we want to apply to *our* code (but maybe can't for | 
|  | 547 | // vendor/device specific things), we could extend this to be a ternary | 
|  | 548 | // value. | 
|  | 549 | strict := true | 
| Yi Kong | 950e0ba | 2019-10-08 02:27:17 -0700 | [diff] [blame] | 550 | if strings.HasPrefix(modulePath, "external/") { | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 551 | strict = false | 
|  | 552 | } | 
|  | 553 |  | 
|  | 554 | // Can be used to make some annotations stricter for code we can fix | 
|  | 555 | // (such as when we mark functions as deprecated). | 
|  | 556 | if strict { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 557 | flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT") | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 558 | } | 
|  | 559 |  | 
| Dan Willemsen | e1a3ce3 | 2016-11-02 20:44:08 -0700 | [diff] [blame] | 560 | if compiler.hasSrcExt(".proto") { | 
| Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 561 | flags = protoFlags(ctx, flags, &compiler.Proto) | 
|  | 562 | } | 
|  | 563 |  | 
| Dan Willemsen | e1a3ce3 | 2016-11-02 20:44:08 -0700 | [diff] [blame] | 564 | if compiler.hasSrcExt(".y") || compiler.hasSrcExt(".yy") { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 565 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, | 
| Dan Willemsen | e1a3ce3 | 2016-11-02 20:44:08 -0700 | [diff] [blame] | 566 | "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String()) | 
|  | 567 | } | 
|  | 568 |  | 
| Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 569 | if compiler.hasSrcExt(".aidl") { | 
| Jooyung Han | e197d8b | 2021-01-05 10:33:16 +0900 | [diff] [blame] | 570 | flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...) | 
| Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 571 | if len(compiler.Properties.Aidl.Local_include_dirs) > 0 { | 
|  | 572 | localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs) | 
|  | 573 | flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs)) | 
|  | 574 | } | 
|  | 575 | if len(compiler.Properties.Aidl.Include_dirs) > 0 { | 
|  | 576 | rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs) | 
|  | 577 | flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs)) | 
|  | 578 | } | 
|  | 579 |  | 
| Zim | 3c3b416 | 2022-09-02 12:45:05 +0100 | [diff] [blame] | 580 | if proptools.BoolDefault(compiler.Properties.Aidl.Generate_traces, true) { | 
| Martijn Coenen | eab1564 | 2018-03-09 09:29:59 +0100 | [diff] [blame] | 581 | flags.aidlFlags = append(flags.aidlFlags, "-t") | 
|  | 582 | } | 
|  | 583 |  | 
| Jooyung Han | 07f70c0 | 2021-11-06 07:08:45 +0900 | [diff] [blame] | 584 | aidlMinSdkVersion := ctx.minSdkVersion() | 
|  | 585 | if aidlMinSdkVersion == "" { | 
|  | 586 | aidlMinSdkVersion = "platform_apis" | 
|  | 587 | } | 
|  | 588 | flags.aidlFlags = append(flags.aidlFlags, "--min_sdk_version="+aidlMinSdkVersion) | 
|  | 589 |  | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 590 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, | 
| Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 591 | "-I"+android.PathForModuleGen(ctx, "aidl").String()) | 
|  | 592 | } | 
|  | 593 |  | 
| Jeff Vander Stoep | d612627 | 2019-07-15 19:08:37 -0700 | [diff] [blame] | 594 | if compiler.hasSrcExt(".rscript") || compiler.hasSrcExt(".fs") { | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 595 | flags = rsFlags(ctx, flags, &compiler.Properties) | 
|  | 596 | } | 
|  | 597 |  | 
| Inseob Kim | 21f2690 | 2018-09-06 00:55:20 +0900 | [diff] [blame] | 598 | if compiler.hasSrcExt(".sysprop") { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 599 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, | 
| Inseob Kim | 21f2690 | 2018-09-06 00:55:20 +0900 | [diff] [blame] | 600 | "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String()) | 
|  | 601 | } | 
|  | 602 |  | 
| Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 603 | if len(compiler.Properties.Srcs) > 0 { | 
|  | 604 | module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName() | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 605 | 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] | 606 | addToModuleList(ctx, modulesUsingWnoErrorKey, module) | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 607 | } 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] | 608 | if warningsAreAllowed(ctx.ModuleDir()) { | 
| Yi Kong | de93647 | 2022-05-19 20:11:10 +0800 | [diff] [blame] | 609 | addToModuleList(ctx, modulesWarningsAllowedKey, module) | 
| Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 610 | } else { | 
| Elliott Hughes | ed4a27b | 2022-05-18 13:15:00 -0700 | [diff] [blame] | 611 | flags.Local.CFlags = append([]string{"-Werror"}, flags.Local.CFlags...) | 
| Chih-Hung Hsieh | 64a38dc | 2017-11-14 14:09:14 -0800 | [diff] [blame] | 612 | } | 
|  | 613 | } | 
|  | 614 | } | 
|  | 615 |  | 
| Pirama Arumuga Nainar | fadb7b5 | 2017-12-19 23:08:09 -0800 | [diff] [blame] | 616 | if Bool(compiler.Properties.Openmp) { | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 617 | flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp") | 
| Pirama Arumuga Nainar | fadb7b5 | 2017-12-19 23:08:09 -0800 | [diff] [blame] | 618 | } | 
|  | 619 |  | 
| Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 620 | // Exclude directories from manual binder interface allowed list. | 
| Ivan Lozano | d094d40 | 2019-11-26 10:32:50 -0800 | [diff] [blame] | 621 | //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] | 622 | if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) { | 
| Ivan Lozano | d094d40 | 2019-11-26 10:32:50 -0800 | [diff] [blame] | 623 | flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES") | 
|  | 624 | } | 
|  | 625 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 626 | return flags | 
|  | 627 | } | 
|  | 628 |  | 
| Dan Willemsen | e1a3ce3 | 2016-11-02 20:44:08 -0700 | [diff] [blame] | 629 | func (compiler *baseCompiler) hasSrcExt(ext string) bool { | 
| Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 630 | for _, src := range compiler.srcsBeforeGen { | 
|  | 631 | if src.Ext() == ext { | 
|  | 632 | return true | 
|  | 633 | } | 
|  | 634 | } | 
| Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 635 | for _, src := range compiler.Properties.Srcs { | 
| Dan Willemsen | e1a3ce3 | 2016-11-02 20:44:08 -0700 | [diff] [blame] | 636 | if filepath.Ext(src) == ext { | 
| Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 637 | return true | 
|  | 638 | } | 
|  | 639 | } | 
| Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 640 | for _, src := range compiler.Properties.OriginalSrcs { | 
|  | 641 | if filepath.Ext(src) == ext { | 
|  | 642 | return true | 
|  | 643 | } | 
|  | 644 | } | 
| Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 645 |  | 
|  | 646 | return false | 
|  | 647 | } | 
|  | 648 |  | 
| Yifan Hong | f2ede7a | 2020-09-09 18:48:40 -0700 | [diff] [blame] | 649 | var invalidDefineCharRegex = regexp.MustCompile("[^a-zA-Z0-9_]") | 
|  | 650 |  | 
| Jooyung Han | 7798857 | 2019-10-18 16:26:16 +0900 | [diff] [blame] | 651 | // makeDefineString transforms a name of an APEX module into a value to be used as value for C define | 
|  | 652 | // For example, com.android.foo => COM_ANDROID_FOO | 
|  | 653 | func makeDefineString(name string) string { | 
| Yifan Hong | f2ede7a | 2020-09-09 18:48:40 -0700 | [diff] [blame] | 654 | return invalidDefineCharRegex.ReplaceAllString(strings.ToUpper(name), "_") | 
| Jooyung Han | 7798857 | 2019-10-18 16:26:16 +0900 | [diff] [blame] | 655 | } | 
|  | 656 |  | 
| Colin Cross | 948f0cb | 2016-10-17 14:24:56 -0700 | [diff] [blame] | 657 | var gnuToCReplacer = strings.NewReplacer("gnu", "c") | 
|  | 658 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 659 | func ndkPathDeps(ctx ModuleContext) android.Paths { | 
| Dan Albert | 92fe740 | 2020-07-15 13:33:30 -0700 | [diff] [blame] | 660 | if ctx.Module().(*Module).IsSdkVariant() { | 
| Chih-Hung Hsieh | f6ca1b9 | 2021-12-05 18:02:50 -0800 | [diff] [blame] | 661 | // The NDK sysroot timestamp file depends on all the NDK sysroot header files | 
|  | 662 | // for compiling src to obj files. | 
|  | 663 | return android.Paths{getNdkHeadersTimestampFile(ctx)} | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 664 | } | 
|  | 665 | return nil | 
|  | 666 | } | 
|  | 667 |  | 
| Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 668 | func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects { | 
| Inseob Kim | d110f87 | 2019-12-06 13:15:38 +0900 | [diff] [blame] | 669 | pathDeps := deps.GeneratedDeps | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 670 | pathDeps = append(pathDeps, ndkPathDeps(ctx)...) | 
| Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 671 |  | 
| Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 672 | buildFlags := flagsToBuilderFlags(flags) | 
|  | 673 |  | 
| Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 674 | srcs := append(android.Paths(nil), compiler.srcsBeforeGen...) | 
|  | 675 |  | 
| Paul Duffin | 33056e8 | 2021-02-19 13:49:08 +0000 | [diff] [blame] | 676 | srcs, genDeps, info := genSources(ctx, srcs, buildFlags) | 
| Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 677 | pathDeps = append(pathDeps, genDeps...) | 
| Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 678 |  | 
| Pirama Arumuga Nainar | 70ba5a3 | 2017-12-19 15:11:01 -0800 | [diff] [blame] | 679 | compiler.pathDeps = pathDeps | 
| Paul Duffin | 33056e8 | 2021-02-19 13:49:08 +0000 | [diff] [blame] | 680 | compiler.generatedSourceInfo = info | 
| Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 681 | compiler.cFlagsDeps = flags.CFlagsDeps | 
| Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 682 |  | 
| Fabien Sanglard | d61f1f4 | 2017-01-10 16:21:22 -0800 | [diff] [blame] | 683 | // Save src, buildFlags and context | 
|  | 684 | compiler.srcs = srcs | 
|  | 685 |  | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 686 | // Compile files listed in c.Properties.Srcs into objects | 
| Chih-Hung Hsieh | 769a51c | 2021-09-17 17:18:39 -0700 | [diff] [blame] | 687 | objs := compileObjs(ctx, buildFlags, "", srcs, | 
|  | 688 | android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_disabled_srcs), | 
| Chih-Hung Hsieh | 9db8a0c | 2022-02-17 12:54:45 -0800 | [diff] [blame] | 689 | android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_timeout_srcs), | 
| Chih-Hung Hsieh | 769a51c | 2021-09-17 17:18:39 -0700 | [diff] [blame] | 690 | pathDeps, compiler.cFlagsDeps) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 691 |  | 
|  | 692 | if ctx.Failed() { | 
| Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 693 | return Objects{} | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 694 | } | 
|  | 695 |  | 
| Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 696 | return objs | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 697 | } | 
|  | 698 |  | 
|  | 699 | // Compile a list of source files into objects a specified subdirectory | 
| Chih-Hung Hsieh | 7540a78 | 2022-01-08 19:56:09 -0800 | [diff] [blame] | 700 | func compileObjs(ctx ModuleContext, flags builderFlags, subdir string, | 
| Chih-Hung Hsieh | 9db8a0c | 2022-02-17 12:54:45 -0800 | [diff] [blame] | 701 | srcFiles, noTidySrcs, timeoutTidySrcs, pathDeps android.Paths, cFlagsDeps android.Paths) Objects { | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 702 |  | 
| Chih-Hung Hsieh | 9db8a0c | 2022-02-17 12:54:45 -0800 | [diff] [blame] | 703 | return transformSourceToObj(ctx, subdir, srcFiles, noTidySrcs, timeoutTidySrcs, flags, pathDeps, cFlagsDeps) | 
| Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 704 | } | 
| Yi Kong | 950e0ba | 2019-10-08 02:27:17 -0700 | [diff] [blame] | 705 |  | 
| Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 706 | // Properties for rust_bindgen related to generating rust bindings. | 
|  | 707 | // This exists here so these properties can be included in a cc_default | 
|  | 708 | // which can be used in both cc and rust modules. | 
|  | 709 | type RustBindgenClangProperties struct { | 
|  | 710 | // list of directories relative to the Blueprints file that will | 
|  | 711 | // be added to the include path using -I | 
|  | 712 | Local_include_dirs []string `android:"arch_variant,variant_prepend"` | 
|  | 713 |  | 
|  | 714 | // list of static libraries that provide headers for this binding. | 
|  | 715 | Static_libs []string `android:"arch_variant,variant_prepend"` | 
|  | 716 |  | 
|  | 717 | // list of shared libraries that provide headers for this binding. | 
|  | 718 | Shared_libs []string `android:"arch_variant"` | 
|  | 719 |  | 
| Ivan Lozano | 9b44383 | 2020-11-17 13:39:30 -0500 | [diff] [blame] | 720 | // List of libraries which export include paths required for this module | 
|  | 721 | Header_libs []string `android:"arch_variant,variant_prepend"` | 
|  | 722 |  | 
| Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 723 | // list of clang flags required to correctly interpret the headers. | 
|  | 724 | Cflags []string `android:"arch_variant"` | 
|  | 725 |  | 
|  | 726 | // list of c++ specific clang flags required to correctly interpret the headers. | 
|  | 727 | // This is provided primarily to make sure cppflags defined in cc_defaults are pulled in. | 
|  | 728 | Cppflags []string `android:"arch_variant"` | 
|  | 729 |  | 
|  | 730 | // C standard version to use. Can be a specific version (such as "gnu11"), | 
|  | 731 | // "experimental" (which will use draft versions like C1x when available), | 
|  | 732 | // or the empty string (which will use the default). | 
|  | 733 | // | 
|  | 734 | // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this | 
|  | 735 | // to "default" will use the build system default version. This cannot be set at the same time as cpp_std. | 
|  | 736 | C_std *string | 
|  | 737 |  | 
|  | 738 | // C++ standard version to use. Can be a specific version (such as | 
|  | 739 | // "gnu++11"), "experimental" (which will use draft versions like C++1z when | 
|  | 740 | // available), or the empty string (which will use the default). | 
|  | 741 | // | 
|  | 742 | // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this | 
|  | 743 | // to "default" will use the build system default version. This cannot be set at the same time as c_std. | 
|  | 744 | Cpp_std *string | 
|  | 745 |  | 
|  | 746 | //TODO(b/161141999) Add support for headers from cc_library_header modules. | 
|  | 747 | } |