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