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