Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 1 | // Copyright 2015 Google Inc. All rights reserved. |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 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 | // This file contains the module types for compiling C/C++ for Android, and converts the properties |
| 18 | // into the flags and filenames necessary to pass to the compiler. The final creation of the rules |
| 19 | // is handled in builder.go |
| 20 | |
| 21 | import ( |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 22 | "fmt" |
| 23 | "path/filepath" |
| 24 | "strings" |
| 25 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 26 | "github.com/google/blueprint" |
| 27 | "github.com/google/blueprint/pathtools" |
| 28 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 29 | "android/soong/common" |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 30 | "android/soong/genrule" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 31 | ) |
| 32 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 33 | var ( |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 34 | HostPrebuiltTag = pctx.VariableConfigMethod("HostPrebuiltTag", common.Config.PrebuiltOS) |
| 35 | SrcDir = pctx.VariableConfigMethod("SrcDir", common.Config.SrcDir) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 36 | |
| 37 | LibcRoot = pctx.StaticVariable("LibcRoot", "${SrcDir}/bionic/libc") |
| 38 | LibmRoot = pctx.StaticVariable("LibmRoot", "${SrcDir}/bionic/libm") |
| 39 | ) |
| 40 | |
| 41 | // Flags used by lots of devices. Putting them in package static variables will save bytes in |
| 42 | // build.ninja so they aren't repeated for every file |
| 43 | var ( |
| 44 | commonGlobalCflags = []string{ |
| 45 | "-DANDROID", |
| 46 | "-fmessage-length=0", |
| 47 | "-W", |
| 48 | "-Wall", |
| 49 | "-Wno-unused", |
| 50 | "-Winit-self", |
| 51 | "-Wpointer-arith", |
| 52 | |
| 53 | // COMMON_RELEASE_CFLAGS |
| 54 | "-DNDEBUG", |
| 55 | "-UDEBUG", |
| 56 | } |
| 57 | |
| 58 | deviceGlobalCflags = []string{ |
| 59 | // TARGET_ERROR_FLAGS |
| 60 | "-Werror=return-type", |
| 61 | "-Werror=non-virtual-dtor", |
| 62 | "-Werror=address", |
| 63 | "-Werror=sequence-point", |
| 64 | } |
| 65 | |
| 66 | hostGlobalCflags = []string{} |
| 67 | |
| 68 | commonGlobalCppflags = []string{ |
| 69 | "-Wsign-promo", |
| 70 | "-std=gnu++11", |
| 71 | } |
| 72 | ) |
| 73 | |
| 74 | func init() { |
| 75 | pctx.StaticVariable("commonGlobalCflags", strings.Join(commonGlobalCflags, " ")) |
| 76 | pctx.StaticVariable("deviceGlobalCflags", strings.Join(deviceGlobalCflags, " ")) |
| 77 | pctx.StaticVariable("hostGlobalCflags", strings.Join(hostGlobalCflags, " ")) |
| 78 | |
| 79 | pctx.StaticVariable("commonGlobalCppflags", strings.Join(commonGlobalCppflags, " ")) |
| 80 | |
| 81 | pctx.StaticVariable("commonClangGlobalCflags", |
| 82 | strings.Join(clangFilterUnknownCflags(commonGlobalCflags), " ")) |
| 83 | pctx.StaticVariable("deviceClangGlobalCflags", |
| 84 | strings.Join(clangFilterUnknownCflags(deviceGlobalCflags), " ")) |
| 85 | pctx.StaticVariable("hostClangGlobalCflags", |
| 86 | strings.Join(clangFilterUnknownCflags(hostGlobalCflags), " ")) |
Tim Kilbourn | f294814 | 2015-03-11 12:03:03 -0700 | [diff] [blame] | 87 | pctx.StaticVariable("commonClangGlobalCppflags", |
| 88 | strings.Join(clangFilterUnknownCflags(commonGlobalCppflags), " ")) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 89 | |
| 90 | // Everything in this list is a crime against abstraction and dependency tracking. |
| 91 | // Do not add anything to this list. |
| 92 | pctx.StaticVariable("commonGlobalIncludes", strings.Join([]string{ |
| 93 | "-isystem ${SrcDir}/system/core/include", |
| 94 | "-isystem ${SrcDir}/hardware/libhardware/include", |
| 95 | "-isystem ${SrcDir}/hardware/libhardware_legacy/include", |
| 96 | "-isystem ${SrcDir}/hardware/ril/include", |
| 97 | "-isystem ${SrcDir}/libnativehelper/include", |
| 98 | "-isystem ${SrcDir}/frameworks/native/include", |
| 99 | "-isystem ${SrcDir}/frameworks/native/opengl/include", |
| 100 | "-isystem ${SrcDir}/frameworks/av/include", |
| 101 | "-isystem ${SrcDir}/frameworks/base/include", |
| 102 | }, " ")) |
| 103 | |
| 104 | pctx.StaticVariable("clangPath", "${SrcDir}/prebuilts/clang/${HostPrebuiltTag}/host/3.6/bin/") |
| 105 | } |
| 106 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 107 | // Building C/C++ code is handled by objects that satisfy this interface via composition |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 108 | type CCModuleType interface { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 109 | common.AndroidModule |
| 110 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 111 | // Modify property values after parsing Blueprints file but before starting dependency |
| 112 | // resolution or build rule generation |
| 113 | ModifyProperties(common.AndroidBaseContext) |
| 114 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 115 | // Modify the ccFlags |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 116 | flags(common.AndroidModuleContext, CCFlags) CCFlags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 117 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 118 | // Return list of dependency names for use in AndroidDynamicDependencies and in depsToPaths |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 119 | depNames(common.AndroidBaseContext, CCDeps) CCDeps |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 120 | |
| 121 | // Compile objects into final module |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 122 | compileModule(common.AndroidModuleContext, CCFlags, CCDeps, []string) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 123 | |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 124 | // Install the built module. |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 125 | installModule(common.AndroidModuleContext, CCFlags) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 126 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 127 | // Return the output file (.o, .a or .so) for use by other modules |
| 128 | outputFile() string |
| 129 | } |
| 130 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 131 | type CCDeps struct { |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 132 | StaticLibs, SharedLibs, LateStaticLibs, WholeStaticLibs, ObjFiles, Cflags []string |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 133 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 134 | WholeStaticLibObjFiles []string |
| 135 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 136 | CrtBegin, CrtEnd string |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 137 | } |
| 138 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 139 | type CCFlags struct { |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 140 | GlobalFlags []string // Flags that apply to C, C++, and assembly source files |
| 141 | AsFlags []string // Flags that apply to assembly source files |
| 142 | CFlags []string // Flags that apply to C and C++ source files |
| 143 | ConlyFlags []string // Flags that apply to C source files |
| 144 | CppFlags []string // Flags that apply to C++ source files |
| 145 | YaccFlags []string // Flags that apply to Yacc source files |
| 146 | LdFlags []string // Flags that apply to linker command lines |
| 147 | |
| 148 | Nocrt bool |
| 149 | Toolchain Toolchain |
| 150 | Clang bool |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 153 | // CCBase contains the properties and members used by all C/C++ module types, and implements |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 154 | // the blueprint.Module interface. It expects to be embedded into an outer specialization struct, |
| 155 | // and uses a ccModuleType interface to that struct to create the build steps. |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 156 | type CCBase struct { |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 157 | common.AndroidModuleBase |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 158 | module CCModuleType |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 159 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 160 | // Properties used to compile all C or C++ modules |
| 161 | Properties struct { |
| 162 | // srcs: list of source files used to compile the C/C++ module. May be .c, .cpp, or .S files. |
| 163 | Srcs []string `android:"arch_variant,arch_subtract"` |
| 164 | |
| 165 | // cflags: list of module-specific flags that will be used for C and C++ compiles. |
| 166 | Cflags []string `android:"arch_variant"` |
| 167 | |
| 168 | // cppflags: list of module-specific flags that will be used for C++ compiles |
| 169 | Cppflags []string `android:"arch_variant"` |
| 170 | |
| 171 | // conlyflags: list of module-specific flags that will be used for C compiles |
| 172 | Conlyflags []string `android:"arch_variant"` |
| 173 | |
| 174 | // asflags: list of module-specific flags that will be used for .S compiles |
| 175 | Asflags []string `android:"arch_variant"` |
| 176 | |
| 177 | // yaccflags: list of module-specific flags that will be used for .y and .yy compiles |
| 178 | Yaccflags []string |
| 179 | |
| 180 | // ldflags: list of module-specific flags that will be used for all link steps |
| 181 | Ldflags []string `android:"arch_variant"` |
| 182 | |
| 183 | // instruction_set: the instruction set architecture to use to compile the C/C++ |
| 184 | // module. |
| 185 | Instruction_set string `android:"arch_variant"` |
| 186 | |
| 187 | // include_dirs: list of directories relative to the root of the source tree that will |
| 188 | // be added to the include path using -I. |
| 189 | // If possible, don't use this. If adding paths from the current directory use |
| 190 | // local_include_dirs, if adding paths from other modules use export_include_dirs in |
| 191 | // that module. |
| 192 | Include_dirs []string `android:"arch_variant"` |
| 193 | |
| 194 | // local_include_dirs: list of directories relative to the Blueprints file that will |
| 195 | // be added to the include path using -I |
| 196 | Local_include_dirs []string `android:"arch_variant"` |
| 197 | |
| 198 | // export_include_dirs: list of directories relative to the Blueprints file that will |
| 199 | // be added to the include path using -I for any module that links against this module |
| 200 | Export_include_dirs []string `android:"arch_variant"` |
| 201 | |
| 202 | // clang_cflags: list of module-specific flags that will be used for C and C++ compiles when |
| 203 | // compiling with clang |
| 204 | Clang_cflags []string `android:"arch_variant"` |
| 205 | |
| 206 | // clang_asflags: list of module-specific flags that will be used for .S compiles when |
| 207 | // compiling with clang |
| 208 | Clang_asflags []string `android:"arch_variant"` |
| 209 | |
| 210 | // system_shared_libs: list of system libraries that will be dynamically linked to |
| 211 | // shared library and executable modules. If unset, generally defaults to libc |
| 212 | // and libm. Set to [] to prevent linking against libc and libm. |
| 213 | System_shared_libs []string |
| 214 | |
| 215 | // whole_static_libs: list of modules whose object files should be linked into this module |
| 216 | // in their entirety. For static library modules, all of the .o files from the intermediate |
| 217 | // directory of the dependency will be linked into this modules .a file. For a shared library, |
| 218 | // the dependency's .a file will be linked into this module using -Wl,--whole-archive. |
| 219 | Whole_static_libs []string `android:"arch_variant"` |
| 220 | |
| 221 | // static_libs: list of modules that should be statically linked into this module. |
| 222 | Static_libs []string `android:"arch_variant"` |
| 223 | |
| 224 | // shared_libs: list of modules that should be dynamically linked into this module. |
| 225 | Shared_libs []string `android:"arch_variant"` |
| 226 | |
| 227 | // allow_undefined_symbols: allow the module to contain undefined symbols. By default, |
| 228 | // modules cannot contain undefined symbols that are not satisified by their immediate |
| 229 | // dependencies. Set this flag to true to remove --no-undefined from the linker flags. |
| 230 | // This flag should only be necessary for compiling low-level libraries like libc. |
| 231 | Allow_undefined_symbols bool |
| 232 | |
| 233 | // nocrt: don't link in crt_begin and crt_end. This flag should only be necessary for |
| 234 | // compiling crt or libc. |
| 235 | Nocrt bool `android:"arch_variant"` |
| 236 | |
| 237 | // no_default_compiler_flags: don't insert default compiler flags into asflags, cflags, |
| 238 | // cppflags, conlyflags, ldflags, or include_dirs |
| 239 | No_default_compiler_flags bool |
| 240 | |
| 241 | // clang: compile module with clang instead of gcc |
| 242 | Clang bool `android:"arch_variant"` |
| 243 | |
| 244 | // rtti: pass -frtti instead of -fno-rtti |
| 245 | Rtti bool |
| 246 | |
| 247 | // host_ldlibs: -l arguments to pass to linker for host-provided shared libraries |
| 248 | Host_ldlibs []string `android:"arch_variant"` |
| 249 | |
| 250 | // stl: select the STL library to use. Possible values are "libc++", "libc++_static", |
| 251 | // "stlport", "stlport_static", "ndk", "libstdc++", or "none". Leave blank to select the |
| 252 | // default |
| 253 | Stl string |
| 254 | |
| 255 | // Set for combined shared/static libraries to prevent compiling object files a second time |
| 256 | SkipCompileObjs bool `blueprint:"mutated"` |
| 257 | |
| 258 | Debug struct { |
| 259 | Cflags []string `android:"arch_variant"` |
| 260 | } `android:"arch_variant"` |
| 261 | Release struct { |
| 262 | Cflags []string `android:"arch_variant"` |
| 263 | } `android:"arch_variant"` |
| 264 | |
| 265 | // Minimum sdk version supported when compiling against the ndk |
| 266 | Sdk_version string |
| 267 | |
| 268 | // relative_install_path: install to a subdirectory of the default install path for the module |
| 269 | Relative_install_path string |
| 270 | } |
| 271 | |
| 272 | unused struct { |
| 273 | Asan bool |
| 274 | Native_coverage bool |
| 275 | Strip string |
| 276 | Tags []string |
| 277 | Required []string |
| 278 | } |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 279 | |
| 280 | installPath string |
| 281 | } |
| 282 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 283 | func newCCBase(base *CCBase, module CCModuleType, hod common.HostOrDeviceSupported, |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 284 | multilib common.Multilib, props ...interface{}) (blueprint.Module, []interface{}) { |
| 285 | |
| 286 | base.module = module |
| 287 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 288 | props = append(props, &base.Properties, &base.unused) |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 289 | |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 290 | return common.InitAndroidArchModule(module, hod, multilib, props...) |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 293 | func (c *CCBase) GenerateAndroidBuildActions(ctx common.AndroidModuleContext) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 294 | toolchain := c.findToolchain(ctx) |
| 295 | if ctx.Failed() { |
| 296 | return |
| 297 | } |
| 298 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 299 | flags := c.collectFlags(ctx, toolchain) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 300 | if ctx.Failed() { |
| 301 | return |
| 302 | } |
| 303 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 304 | depNames := c.module.depNames(ctx, CCDeps{}) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 305 | if ctx.Failed() { |
| 306 | return |
| 307 | } |
| 308 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 309 | deps := c.depsToPaths(ctx, depNames) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 310 | if ctx.Failed() { |
| 311 | return |
| 312 | } |
| 313 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 314 | flags.CFlags = append(flags.CFlags, deps.Cflags...) |
Colin Cross | ed9f868 | 2015-03-18 17:17:35 -0700 | [diff] [blame] | 315 | |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 316 | objFiles := c.compileObjs(ctx, flags) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 317 | if ctx.Failed() { |
| 318 | return |
| 319 | } |
| 320 | |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 321 | generatedObjFiles := c.compileGeneratedObjs(ctx, flags) |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 322 | if ctx.Failed() { |
| 323 | return |
| 324 | } |
| 325 | |
| 326 | objFiles = append(objFiles, generatedObjFiles...) |
| 327 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 328 | c.ccModuleType().compileModule(ctx, flags, deps, objFiles) |
| 329 | if ctx.Failed() { |
| 330 | return |
| 331 | } |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 332 | |
| 333 | c.ccModuleType().installModule(ctx, flags) |
| 334 | if ctx.Failed() { |
| 335 | return |
| 336 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 337 | } |
| 338 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 339 | func (c *CCBase) ccModuleType() CCModuleType { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 340 | return c.module |
| 341 | } |
| 342 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 343 | var _ common.AndroidDynamicDepender = (*CCBase)(nil) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 344 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 345 | func (c *CCBase) findToolchain(ctx common.AndroidModuleContext) Toolchain { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 346 | arch := ctx.Arch() |
| 347 | factory := toolchainFactories[arch.HostOrDevice][arch.ArchType] |
| 348 | if factory == nil { |
| 349 | panic(fmt.Sprintf("Toolchain not found for %s arch %q", |
| 350 | arch.HostOrDevice.String(), arch.String())) |
| 351 | } |
| 352 | return factory(arch.ArchVariant, arch.CpuVariant) |
| 353 | } |
| 354 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 355 | func (c *CCBase) ModifyProperties(ctx common.AndroidBaseContext) { |
| 356 | } |
| 357 | |
Colin Cross | e11befc | 2015-04-27 17:49:17 -0700 | [diff] [blame] | 358 | func (c *CCBase) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 359 | depNames.WholeStaticLibs = append(depNames.WholeStaticLibs, c.Properties.Whole_static_libs...) |
| 360 | depNames.StaticLibs = append(depNames.StaticLibs, c.Properties.Static_libs...) |
| 361 | depNames.SharedLibs = append(depNames.SharedLibs, c.Properties.Shared_libs...) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 362 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 363 | return depNames |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 364 | } |
| 365 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 366 | func (c *CCBase) AndroidDynamicDependencies(ctx common.AndroidDynamicDependerModuleContext) []string { |
| 367 | c.module.ModifyProperties(ctx) |
| 368 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 369 | depNames := CCDeps{} |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 370 | depNames = c.module.depNames(ctx, depNames) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 371 | staticLibs := depNames.WholeStaticLibs |
| 372 | staticLibs = append(staticLibs, depNames.StaticLibs...) |
| 373 | staticLibs = append(staticLibs, depNames.LateStaticLibs...) |
| 374 | ctx.AddVariationDependencies([]blueprint.Variation{{"link", "static"}}, staticLibs...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 375 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 376 | ctx.AddVariationDependencies([]blueprint.Variation{{"link", "shared"}}, depNames.SharedLibs...) |
| 377 | |
| 378 | ret := append([]string(nil), depNames.ObjFiles...) |
| 379 | if depNames.CrtBegin != "" { |
| 380 | ret = append(ret, depNames.CrtBegin) |
| 381 | } |
| 382 | if depNames.CrtEnd != "" { |
| 383 | ret = append(ret, depNames.CrtEnd) |
| 384 | } |
| 385 | |
| 386 | return ret |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | // Create a ccFlags struct that collects the compile flags from global values, |
| 390 | // per-target values, module type values, and per-module Blueprints properties |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 391 | func (c *CCBase) collectFlags(ctx common.AndroidModuleContext, toolchain Toolchain) CCFlags { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 392 | flags := CCFlags{ |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 393 | CFlags: c.Properties.Cflags, |
| 394 | CppFlags: c.Properties.Cppflags, |
| 395 | ConlyFlags: c.Properties.Conlyflags, |
| 396 | LdFlags: c.Properties.Ldflags, |
| 397 | AsFlags: c.Properties.Asflags, |
| 398 | YaccFlags: c.Properties.Yaccflags, |
| 399 | Nocrt: c.Properties.Nocrt, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 400 | Toolchain: toolchain, |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 401 | Clang: c.Properties.Clang, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 402 | } |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 403 | |
| 404 | // Include dir cflags |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 405 | rootIncludeDirs := pathtools.PrefixPaths(c.Properties.Include_dirs, ctx.AConfig().SrcDir()) |
| 406 | localIncludeDirs := pathtools.PrefixPaths(c.Properties.Local_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 407 | flags.GlobalFlags = append(flags.GlobalFlags, |
| 408 | includeDirsToFlags(rootIncludeDirs), |
| 409 | includeDirsToFlags(localIncludeDirs)) |
| 410 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 411 | if !c.Properties.No_default_compiler_flags { |
| 412 | if c.Properties.Sdk_version == "" || ctx.Host() { |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 413 | flags.GlobalFlags = append(flags.GlobalFlags, |
| 414 | "${commonGlobalIncludes}", |
| 415 | toolchain.IncludeFlags(), |
| 416 | "-I${SrcDir}/libnativehelper/include/nativehelper") |
| 417 | } |
| 418 | |
| 419 | flags.GlobalFlags = append(flags.GlobalFlags, []string{ |
| 420 | "-I" + common.ModuleSrcDir(ctx), |
| 421 | "-I" + common.ModuleOutDir(ctx), |
| 422 | "-I" + common.ModuleGenDir(ctx), |
| 423 | }...) |
| 424 | } |
| 425 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 426 | instructionSet := c.Properties.Instruction_set |
Tim Kilbourn | 1a9bf26 | 2015-03-18 12:28:32 -0700 | [diff] [blame] | 427 | instructionSetFlags, err := toolchain.InstructionSetFlags(instructionSet) |
| 428 | if err != nil { |
| 429 | ctx.ModuleErrorf("%s", err) |
| 430 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 431 | |
Colin Cross | af19a29 | 2015-03-18 12:07:10 -0700 | [diff] [blame] | 432 | // TODO: debug |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 433 | flags.CFlags = append(flags.CFlags, c.Properties.Release.Cflags...) |
Colin Cross | af19a29 | 2015-03-18 12:07:10 -0700 | [diff] [blame] | 434 | |
Colin Cross | 28d7659 | 2015-03-26 16:14:04 -0700 | [diff] [blame] | 435 | if ctx.Host() && !ctx.ContainsProperty("clang") { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 436 | flags.Clang = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 437 | } |
| 438 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 439 | if flags.Clang { |
| 440 | flags.CFlags = clangFilterUnknownCflags(flags.CFlags) |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 441 | flags.CFlags = append(flags.CFlags, c.Properties.Clang_cflags...) |
| 442 | flags.AsFlags = append(flags.AsFlags, c.Properties.Clang_asflags...) |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 443 | flags.CppFlags = clangFilterUnknownCflags(flags.CppFlags) |
| 444 | flags.ConlyFlags = clangFilterUnknownCflags(flags.ConlyFlags) |
| 445 | flags.LdFlags = clangFilterUnknownCflags(flags.LdFlags) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 446 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 447 | flags.CFlags = append(flags.CFlags, "${clangExtraCflags}") |
| 448 | flags.ConlyFlags = append(flags.ConlyFlags, "${clangExtraConlyflags}") |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 449 | if ctx.Device() { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 450 | flags.CFlags = append(flags.CFlags, "${clangExtraTargetCflags}") |
Colin Cross | bdd7b1c | 2015-03-16 16:21:20 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 453 | target := "-target " + toolchain.ClangTriple() |
| 454 | gccPrefix := "-B" + filepath.Join(toolchain.GccRoot(), toolchain.GccTriple(), "bin") |
| 455 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 456 | flags.CFlags = append(flags.CFlags, target, gccPrefix) |
| 457 | flags.AsFlags = append(flags.AsFlags, target, gccPrefix) |
| 458 | flags.LdFlags = append(flags.LdFlags, target, gccPrefix) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 459 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 460 | if ctx.Host() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 461 | gccToolchain := "--gcc-toolchain=" + toolchain.GccRoot() |
| 462 | sysroot := "--sysroot=" + filepath.Join(toolchain.GccRoot(), "sysroot") |
| 463 | |
| 464 | // TODO: also need more -B, -L flags to make host builds hermetic |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 465 | flags.CFlags = append(flags.CFlags, gccToolchain, sysroot) |
| 466 | flags.AsFlags = append(flags.AsFlags, gccToolchain, sysroot) |
| 467 | flags.LdFlags = append(flags.LdFlags, gccToolchain, sysroot) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 471 | if !c.Properties.No_default_compiler_flags { |
| 472 | if ctx.Device() && !c.Properties.Allow_undefined_symbols { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 473 | flags.LdFlags = append(flags.LdFlags, "-Wl,--no-undefined") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 474 | } |
| 475 | |
Colin Cross | 56b4d45 | 2015-04-21 17:38:44 -0700 | [diff] [blame] | 476 | flags.GlobalFlags = append(flags.GlobalFlags, instructionSetFlags) |
| 477 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 478 | if flags.Clang { |
| 479 | flags.CppFlags = append(flags.CppFlags, "${commonClangGlobalCppflags}") |
Colin Cross | 56b4d45 | 2015-04-21 17:38:44 -0700 | [diff] [blame] | 480 | flags.GlobalFlags = append(flags.GlobalFlags, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 481 | toolchain.ClangCflags(), |
| 482 | "${commonClangGlobalCflags}", |
Colin Cross | 56b4d45 | 2015-04-21 17:38:44 -0700 | [diff] [blame] | 483 | fmt.Sprintf("${%sClangGlobalCflags}", ctx.Arch().HostOrDevice)) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 484 | } else { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 485 | flags.CppFlags = append(flags.CppFlags, "${commonGlobalCppflags}") |
Colin Cross | 56b4d45 | 2015-04-21 17:38:44 -0700 | [diff] [blame] | 486 | flags.GlobalFlags = append(flags.GlobalFlags, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 487 | toolchain.Cflags(), |
| 488 | "${commonGlobalCflags}", |
Colin Cross | 56b4d45 | 2015-04-21 17:38:44 -0700 | [diff] [blame] | 489 | fmt.Sprintf("${%sGlobalCflags}", ctx.Arch().HostOrDevice)) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 490 | } |
| 491 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 492 | if ctx.Device() { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 493 | if c.Properties.Rtti { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 494 | flags.CppFlags = append(flags.CppFlags, "-frtti") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 495 | } else { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 496 | flags.CppFlags = append(flags.CppFlags, "-fno-rtti") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 497 | } |
| 498 | } |
| 499 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 500 | flags.AsFlags = append(flags.AsFlags, "-D__ASSEMBLY__") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 501 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 502 | if flags.Clang { |
| 503 | flags.CppFlags = append(flags.CppFlags, toolchain.ClangCppflags()) |
| 504 | flags.LdFlags = append(flags.LdFlags, toolchain.ClangLdflags()) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 505 | } else { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 506 | flags.CppFlags = append(flags.CppFlags, toolchain.Cppflags()) |
| 507 | flags.LdFlags = append(flags.LdFlags, toolchain.Ldflags()) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 508 | } |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 509 | |
| 510 | if ctx.Host() { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 511 | flags.LdFlags = append(flags.LdFlags, c.Properties.Host_ldlibs...) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 512 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 513 | } |
| 514 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 515 | flags = c.ccModuleType().flags(ctx, flags) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 516 | |
| 517 | // Optimization to reduce size of build.ninja |
| 518 | // Replace the long list of flags for each file with a module-local variable |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 519 | ctx.Variable(pctx, "cflags", strings.Join(flags.CFlags, " ")) |
| 520 | ctx.Variable(pctx, "cppflags", strings.Join(flags.CppFlags, " ")) |
| 521 | ctx.Variable(pctx, "asflags", strings.Join(flags.AsFlags, " ")) |
| 522 | flags.CFlags = []string{"$cflags"} |
| 523 | flags.CppFlags = []string{"$cppflags"} |
| 524 | flags.AsFlags = []string{"$asflags"} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 525 | |
| 526 | return flags |
| 527 | } |
| 528 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 529 | func (c *CCBase) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 530 | return flags |
| 531 | } |
| 532 | |
| 533 | // Compile a list of source files into objects a specified subdirectory |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 534 | func (c *CCBase) customCompileObjs(ctx common.AndroidModuleContext, flags CCFlags, |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 535 | subdir string, srcFiles []string) []string { |
| 536 | |
| 537 | buildFlags := ccFlagsToBuilderFlags(flags) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 538 | |
Colin Cross | fce5327 | 2015-04-08 11:21:40 -0700 | [diff] [blame] | 539 | srcFiles = common.ExpandSources(ctx, srcFiles) |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 540 | srcFiles, deps := genSources(ctx, srcFiles, buildFlags) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 541 | |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 542 | return TransformSourceToObj(ctx, subdir, srcFiles, buildFlags, deps) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 543 | } |
| 544 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 545 | // Compile files listed in c.Properties.Srcs into objects |
| 546 | func (c *CCBase) compileObjs(ctx common.AndroidModuleContext, flags CCFlags) []string { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 547 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 548 | if c.Properties.SkipCompileObjs { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 549 | return nil |
| 550 | } |
| 551 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 552 | return c.customCompileObjs(ctx, flags, "", c.Properties.Srcs) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 553 | } |
| 554 | |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 555 | // Compile generated source files from dependencies |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 556 | func (c *CCBase) compileGeneratedObjs(ctx common.AndroidModuleContext, flags CCFlags) []string { |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 557 | var srcs []string |
| 558 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 559 | if c.Properties.SkipCompileObjs { |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 560 | return nil |
| 561 | } |
| 562 | |
| 563 | ctx.VisitDirectDeps(func(module blueprint.Module) { |
| 564 | if gen, ok := module.(genrule.SourceFileGenerator); ok { |
| 565 | srcs = append(srcs, gen.GeneratedSourceFiles()...) |
| 566 | } |
| 567 | }) |
| 568 | |
| 569 | if len(srcs) == 0 { |
| 570 | return nil |
| 571 | } |
| 572 | |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 573 | return TransformSourceToObj(ctx, "", srcs, ccFlagsToBuilderFlags(flags), nil) |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 574 | } |
| 575 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 576 | func (c *CCBase) outputFile() string { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 577 | return "" |
| 578 | } |
| 579 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 580 | func (c *CCBase) depsToPathsFromList(ctx common.AndroidModuleContext, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 581 | names []string) (modules []common.AndroidModule, |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 582 | outputFiles []string, exportedFlags []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 583 | |
| 584 | for _, n := range names { |
| 585 | found := false |
| 586 | ctx.VisitDirectDeps(func(m blueprint.Module) { |
| 587 | otherName := ctx.OtherModuleName(m) |
| 588 | if otherName != n { |
| 589 | return |
| 590 | } |
| 591 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 592 | if a, ok := m.(CCModuleType); ok { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 593 | if a.Disabled() { |
| 594 | // If a cc_library host+device module depends on a library that exists as both |
| 595 | // cc_library_shared and cc_library_host_shared, it will end up with two |
| 596 | // dependencies with the same name, one of which is marked disabled for each |
| 597 | // of host and device. Ignore the disabled one. |
| 598 | return |
| 599 | } |
| 600 | if a.HostOrDevice() != ctx.Arch().HostOrDevice { |
| 601 | ctx.ModuleErrorf("host/device mismatch between %q and %q", ctx.ModuleName(), |
| 602 | otherName) |
| 603 | return |
| 604 | } |
| 605 | |
| 606 | if outputFile := a.outputFile(); outputFile != "" { |
| 607 | if found { |
| 608 | ctx.ModuleErrorf("multiple modules satisified dependency on %q", otherName) |
| 609 | return |
| 610 | } |
| 611 | outputFiles = append(outputFiles, outputFile) |
| 612 | modules = append(modules, a) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 613 | if i, ok := a.(ccExportedFlagsProducer); ok { |
| 614 | exportedFlags = append(exportedFlags, i.exportedFlags()...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 615 | } |
| 616 | found = true |
| 617 | } else { |
| 618 | ctx.ModuleErrorf("module %q missing output file", otherName) |
| 619 | return |
| 620 | } |
| 621 | } else { |
| 622 | ctx.ModuleErrorf("module %q not an android module", otherName) |
| 623 | return |
| 624 | } |
| 625 | }) |
| 626 | if !found { |
| 627 | ctx.ModuleErrorf("unsatisified dependency on %q", n) |
| 628 | } |
| 629 | } |
| 630 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 631 | return modules, outputFiles, exportedFlags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 632 | } |
| 633 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 634 | // Convert depenedency names to paths. Takes a CCDeps containing names and returns a CCDeps |
| 635 | // containing paths |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 636 | func (c *CCBase) depsToPaths(ctx common.AndroidModuleContext, depNames CCDeps) CCDeps { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 637 | var depPaths CCDeps |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 638 | var newCflags []string |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 639 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 640 | var wholeStaticLibModules []common.AndroidModule |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 641 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 642 | wholeStaticLibModules, depPaths.WholeStaticLibs, newCflags = |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 643 | c.depsToPathsFromList(ctx, depNames.WholeStaticLibs) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 644 | depPaths.Cflags = append(depPaths.Cflags, newCflags...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 645 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 646 | for _, m := range wholeStaticLibModules { |
| 647 | if staticLib, ok := m.(ccLibraryInterface); ok && staticLib.static() { |
| 648 | depPaths.WholeStaticLibObjFiles = |
| 649 | append(depPaths.WholeStaticLibObjFiles, staticLib.allObjFiles()...) |
| 650 | } else { |
| 651 | ctx.ModuleErrorf("module %q not a static library", ctx.OtherModuleName(m)) |
| 652 | } |
| 653 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 654 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 655 | _, depPaths.StaticLibs, newCflags = c.depsToPathsFromList(ctx, depNames.StaticLibs) |
| 656 | depPaths.Cflags = append(depPaths.Cflags, newCflags...) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 657 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 658 | _, depPaths.LateStaticLibs, newCflags = c.depsToPathsFromList(ctx, depNames.LateStaticLibs) |
| 659 | depPaths.Cflags = append(depPaths.Cflags, newCflags...) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 660 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 661 | _, depPaths.SharedLibs, newCflags = c.depsToPathsFromList(ctx, depNames.SharedLibs) |
| 662 | depPaths.Cflags = append(depPaths.Cflags, newCflags...) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 663 | |
| 664 | ctx.VisitDirectDeps(func(m blueprint.Module) { |
| 665 | if obj, ok := m.(*ccObject); ok { |
| 666 | otherName := ctx.OtherModuleName(m) |
| 667 | if otherName == depNames.CrtBegin { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 668 | if !c.Properties.Nocrt { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 669 | depPaths.CrtBegin = obj.outputFile() |
| 670 | } |
| 671 | } else if otherName == depNames.CrtEnd { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 672 | if !c.Properties.Nocrt { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 673 | depPaths.CrtEnd = obj.outputFile() |
| 674 | } |
| 675 | } else { |
| 676 | depPaths.ObjFiles = append(depPaths.ObjFiles, obj.outputFile()) |
| 677 | } |
| 678 | } |
| 679 | }) |
| 680 | |
| 681 | return depPaths |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 682 | } |
| 683 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 684 | // CCLinked contains the properties and members used by libraries and executables |
| 685 | type CCLinked struct { |
| 686 | CCBase |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 687 | |
| 688 | dynamicProperties struct { |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 689 | VariantIsShared bool `blueprint:"mutated"` |
| 690 | VariantIsStatic bool `blueprint:"mutated"` |
| 691 | VariantIsStaticBinary bool `blueprint:"mutated"` |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 692 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 693 | } |
| 694 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 695 | func newCCDynamic(dynamic *CCLinked, module CCModuleType, hod common.HostOrDeviceSupported, |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 696 | multilib common.Multilib, props ...interface{}) (blueprint.Module, []interface{}) { |
| 697 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 698 | props = append(props, &dynamic.dynamicProperties) |
| 699 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 700 | return newCCBase(&dynamic.CCBase, module, hod, multilib, props...) |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 701 | } |
| 702 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 703 | func (c *CCLinked) systemSharedLibs(ctx common.AndroidBaseContext) []string { |
Colin Cross | 28d7659 | 2015-03-26 16:14:04 -0700 | [diff] [blame] | 704 | if ctx.ContainsProperty("system_shared_libs") { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 705 | return c.Properties.System_shared_libs |
| 706 | } else if ctx.Device() && c.Properties.Sdk_version == "" { |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 707 | return []string{"libc", "libm"} |
Colin Cross | 28d7659 | 2015-03-26 16:14:04 -0700 | [diff] [blame] | 708 | } else { |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 709 | return nil |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 710 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 711 | } |
| 712 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 713 | func (c *CCLinked) stl(ctx common.AndroidBaseContext) string { |
| 714 | if c.Properties.Sdk_version != "" && ctx.Device() { |
| 715 | switch c.Properties.Stl { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 716 | case "": |
| 717 | return "ndk_system" |
| 718 | case "c++_shared", "c++_static", |
| 719 | "stlport_shared", "stlport_static", |
| 720 | "gnustl_static": |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 721 | return "ndk_lib" + c.Properties.Stl |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 722 | default: |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 723 | ctx.ModuleErrorf("stl: %q is not a supported STL with sdk_version set", c.Properties.Stl) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 724 | return "" |
| 725 | } |
| 726 | } |
| 727 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 728 | switch c.Properties.Stl { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 729 | case "libc++", "libc++_static", |
| 730 | "stlport", "stlport_static", |
| 731 | "libstdc++": |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 732 | return c.Properties.Stl |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 733 | case "none": |
| 734 | return "" |
| 735 | case "": |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 736 | if c.static() { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 737 | return "libc++_static" |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 738 | } else { |
| 739 | return "libc++" // TODO: mingw needs libstdc++ |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 740 | } |
| 741 | default: |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 742 | ctx.ModuleErrorf("stl: %q is not a supported STL", c.Properties.Stl) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 743 | return "" |
| 744 | } |
| 745 | } |
| 746 | |
Colin Cross | 712fc02 | 2015-04-27 11:13:34 -0700 | [diff] [blame] | 747 | var ( |
| 748 | hostDynamicGccLibs = []string{"-lgcc_s", "-lgcc", "-lc", "-lgcc_s", "-lgcc"} |
| 749 | hostStaticGccLibs = []string{"-Wl,--start-group", "-lgcc", "-lgcc_eh", "-lc", "-Wl,--end-group"} |
| 750 | ) |
| 751 | |
Colin Cross | e11befc | 2015-04-27 17:49:17 -0700 | [diff] [blame] | 752 | func (c *CCLinked) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 753 | stl := c.stl(ctx) |
| 754 | if ctx.Failed() { |
| 755 | return flags |
| 756 | } |
| 757 | |
| 758 | switch stl { |
| 759 | case "libc++", "libc++_static": |
| 760 | flags.CFlags = append(flags.CFlags, "-D_USING_LIBCXX") |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 761 | flags.CFlags = append(flags.CFlags, "-I${SrcDir}/external/libcxx/include") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 762 | if ctx.Host() { |
| 763 | flags.CppFlags = append(flags.CppFlags, "-nostdinc++") |
| 764 | flags.LdFlags = append(flags.LdFlags, "-nodefaultlibs") |
Colin Cross | 712fc02 | 2015-04-27 11:13:34 -0700 | [diff] [blame] | 765 | flags.LdFlags = append(flags.LdFlags, "-lm", "-lpthread") |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 766 | if c.staticBinary() { |
Colin Cross | 712fc02 | 2015-04-27 11:13:34 -0700 | [diff] [blame] | 767 | flags.LdFlags = append(flags.LdFlags, hostStaticGccLibs...) |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 768 | } else { |
| 769 | flags.LdFlags = append(flags.LdFlags, hostDynamicGccLibs...) |
Colin Cross | 712fc02 | 2015-04-27 11:13:34 -0700 | [diff] [blame] | 770 | } |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 771 | } |
| 772 | case "stlport", "stlport_static": |
| 773 | if ctx.Device() { |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 774 | flags.CFlags = append(flags.CFlags, |
| 775 | "-I${SrcDir}/external/stlport/stlport", |
| 776 | "-I${SrcDir}/bionic/libstdc++/include", |
| 777 | "-I${SrcDir}/bionic") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 778 | } |
| 779 | case "libstdc++": |
| 780 | // Using bionic's basic libstdc++. Not actually an STL. Only around until the |
| 781 | // tree is in good enough shape to not need it. |
| 782 | // Host builds will use GNU libstdc++. |
| 783 | if ctx.Device() { |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 784 | flags.CFlags = append(flags.CFlags, "-I${SrcDir}/bionic/libstdc++/include") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 785 | } |
| 786 | case "ndk_system": |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 787 | ndkSrcRoot := ctx.AConfig().SrcDir() + "/prebuilts/ndk/current/sources/" |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 788 | flags.CFlags = append(flags.CFlags, "-isystem "+ndkSrcRoot+"cxx-stl/system/include") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 789 | case "ndk_libc++_shared", "ndk_libc++_static": |
| 790 | // TODO(danalbert): This really shouldn't be here... |
| 791 | flags.CppFlags = append(flags.CppFlags, "-std=c++11") |
| 792 | case "ndk_libstlport_shared", "ndk_libstlport_static", "ndk_libgnustl_static": |
| 793 | // Nothing |
| 794 | case "": |
| 795 | // None or error. |
| 796 | if ctx.Host() { |
| 797 | flags.CppFlags = append(flags.CppFlags, "-nostdinc++") |
| 798 | flags.LdFlags = append(flags.LdFlags, "-nodefaultlibs") |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 799 | if c.staticBinary() { |
Colin Cross | 712fc02 | 2015-04-27 11:13:34 -0700 | [diff] [blame] | 800 | flags.LdFlags = append(flags.LdFlags, hostStaticGccLibs...) |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 801 | } else { |
| 802 | flags.LdFlags = append(flags.LdFlags, hostDynamicGccLibs...) |
Colin Cross | 712fc02 | 2015-04-27 11:13:34 -0700 | [diff] [blame] | 803 | } |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 804 | } |
| 805 | default: |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 806 | panic(fmt.Errorf("Unknown stl in CCLinked.Flags: %q", stl)) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | return flags |
| 810 | } |
| 811 | |
Colin Cross | e11befc | 2015-04-27 17:49:17 -0700 | [diff] [blame] | 812 | func (c *CCLinked) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
| 813 | depNames = c.CCBase.depNames(ctx, depNames) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 814 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 815 | stl := c.stl(ctx) |
| 816 | if ctx.Failed() { |
| 817 | return depNames |
| 818 | } |
| 819 | |
| 820 | switch stl { |
| 821 | case "libc++": |
| 822 | depNames.SharedLibs = append(depNames.SharedLibs, stl) |
| 823 | case "libstdc++": |
| 824 | if ctx.Device() { |
| 825 | depNames.SharedLibs = append(depNames.SharedLibs, stl) |
| 826 | } |
| 827 | case "libc++_static": |
| 828 | depNames.StaticLibs = append(depNames.StaticLibs, stl) |
| 829 | case "stlport": |
| 830 | depNames.SharedLibs = append(depNames.SharedLibs, "libstdc++", "libstlport") |
| 831 | case "stlport_static": |
| 832 | depNames.StaticLibs = append(depNames.StaticLibs, "libstdc++", "libstlport_static") |
| 833 | case "": |
| 834 | // None or error. |
| 835 | case "ndk_system": |
| 836 | // TODO: Make a system STL prebuilt for the NDK. |
| 837 | // The system STL doesn't have a prebuilt (it uses the system's libstdc++), but it does have |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 838 | // its own includes. The includes are handled in CCBase.Flags(). |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 839 | depNames.SharedLibs = append([]string{"libstdc++"}, depNames.SharedLibs...) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 840 | case "ndk_libc++_shared", "ndk_libstlport_shared": |
| 841 | depNames.SharedLibs = append(depNames.SharedLibs, stl) |
| 842 | case "ndk_libc++_static", "ndk_libstlport_static", "ndk_libgnustl_static": |
| 843 | depNames.StaticLibs = append(depNames.StaticLibs, stl) |
| 844 | default: |
Colin Cross | e11befc | 2015-04-27 17:49:17 -0700 | [diff] [blame] | 845 | panic(fmt.Errorf("Unknown stl in CCLinked.depNames: %q", stl)) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 846 | } |
| 847 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 848 | if ctx.Device() { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 849 | if ctx.ModuleName() != "libcompiler_rt-extras" { |
| 850 | depNames.StaticLibs = append(depNames.StaticLibs, "libcompiler_rt-extras") |
| 851 | } |
Colin Cross | 77b00fa | 2015-03-16 16:15:49 -0700 | [diff] [blame] | 852 | // libgcc and libatomic have to be last on the command line |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 853 | depNames.LateStaticLibs = append(depNames.LateStaticLibs, "libgcov", "libatomic", "libgcc") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 854 | |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 855 | if !c.static() { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 856 | depNames.SharedLibs = append(depNames.SharedLibs, c.systemSharedLibs(ctx)...) |
| 857 | } |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 858 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 859 | if c.Properties.Sdk_version != "" { |
| 860 | version := c.Properties.Sdk_version |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 861 | depNames.SharedLibs = append(depNames.SharedLibs, |
| 862 | "ndk_libc."+version, |
| 863 | "ndk_libm."+version, |
| 864 | ) |
| 865 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 866 | } |
| 867 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 868 | return depNames |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 869 | } |
| 870 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 871 | // ccLinkedInterface interface is used on ccLinked to deal with static or shared variants |
| 872 | type ccLinkedInterface interface { |
| 873 | // Returns true if the build options for the module have selected a static or shared build |
| 874 | buildStatic() bool |
| 875 | buildShared() bool |
| 876 | |
| 877 | // Sets whether a specific variant is static or shared |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 878 | setStatic(bool) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 879 | |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 880 | // Returns whether a specific variant is a static library or binary |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 881 | static() bool |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 882 | |
| 883 | // Returns whether a module is a static binary |
| 884 | staticBinary() bool |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | var _ ccLinkedInterface = (*CCLibrary)(nil) |
| 888 | var _ ccLinkedInterface = (*CCBinary)(nil) |
| 889 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 890 | func (c *CCLinked) static() bool { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 891 | return c.dynamicProperties.VariantIsStatic |
| 892 | } |
| 893 | |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 894 | func (c *CCLinked) staticBinary() bool { |
| 895 | return c.dynamicProperties.VariantIsStaticBinary |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 896 | } |
| 897 | |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 898 | func (c *CCLinked) setStatic(static bool) { |
| 899 | c.dynamicProperties.VariantIsStatic = static |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 900 | } |
| 901 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 902 | type ccExportedFlagsProducer interface { |
| 903 | exportedFlags() []string |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 904 | } |
| 905 | |
| 906 | // |
| 907 | // Combined static+shared libraries |
| 908 | // |
| 909 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 910 | type CCLibrary struct { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 911 | CCLinked |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 912 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 913 | reuseFrom ccLibraryInterface |
| 914 | reuseObjFiles []string |
| 915 | objFiles []string |
| 916 | exportFlags []string |
| 917 | out string |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 918 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 919 | LibraryProperties struct { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 920 | BuildStatic bool `blueprint:"mutated"` |
| 921 | BuildShared bool `blueprint:"mutated"` |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 922 | Static struct { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 923 | Srcs []string `android:"arch_variant"` |
| 924 | Cflags []string `android:"arch_variant"` |
| 925 | } `android:"arch_variant"` |
| 926 | Shared struct { |
| 927 | Srcs []string `android:"arch_variant"` |
| 928 | Cflags []string `android:"arch_variant"` |
| 929 | } `android:"arch_variant"` |
| 930 | } |
| 931 | } |
| 932 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 933 | func (c *CCLibrary) buildStatic() bool { |
| 934 | return c.LibraryProperties.BuildStatic |
| 935 | } |
| 936 | |
| 937 | func (c *CCLibrary) buildShared() bool { |
| 938 | return c.LibraryProperties.BuildShared |
| 939 | } |
| 940 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 941 | type ccLibraryInterface interface { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 942 | ccLinkedInterface |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 943 | ccLibrary() *CCLibrary |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 944 | setReuseFrom(ccLibraryInterface) |
| 945 | getReuseFrom() ccLibraryInterface |
| 946 | getReuseObjFiles() []string |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 947 | allObjFiles() []string |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 948 | } |
| 949 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 950 | var _ ccLibraryInterface = (*CCLibrary)(nil) |
| 951 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 952 | func (c *CCLibrary) ccLibrary() *CCLibrary { |
| 953 | return c |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 954 | } |
| 955 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 956 | func NewCCLibrary(library *CCLibrary, module CCModuleType, |
| 957 | hod common.HostOrDeviceSupported) (blueprint.Module, []interface{}) { |
| 958 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 959 | return newCCDynamic(&library.CCLinked, module, hod, common.MultilibBoth, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 960 | &library.LibraryProperties) |
| 961 | } |
| 962 | |
| 963 | func CCLibraryFactory() (blueprint.Module, []interface{}) { |
| 964 | module := &CCLibrary{} |
| 965 | |
| 966 | module.LibraryProperties.BuildShared = true |
| 967 | module.LibraryProperties.BuildStatic = true |
| 968 | |
| 969 | return NewCCLibrary(module, module, common.HostAndDeviceSupported) |
| 970 | } |
| 971 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 972 | func (c *CCLibrary) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | e11befc | 2015-04-27 17:49:17 -0700 | [diff] [blame] | 973 | depNames = c.CCLinked.depNames(ctx, depNames) |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 974 | if !c.static() { |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 975 | if ctx.Device() { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 976 | depNames.CrtBegin = "crtbegin_so" |
| 977 | depNames.CrtEnd = "crtend_so" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 978 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 979 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 980 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 981 | return depNames |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 982 | } |
| 983 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 984 | func (c *CCLibrary) outputFile() string { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 985 | return c.out |
| 986 | } |
| 987 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 988 | func (c *CCLibrary) getReuseObjFiles() []string { |
| 989 | return c.reuseObjFiles |
| 990 | } |
| 991 | |
| 992 | func (c *CCLibrary) setReuseFrom(reuseFrom ccLibraryInterface) { |
| 993 | c.reuseFrom = reuseFrom |
| 994 | } |
| 995 | |
| 996 | func (c *CCLibrary) getReuseFrom() ccLibraryInterface { |
| 997 | return c.reuseFrom |
| 998 | } |
| 999 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1000 | func (c *CCLibrary) allObjFiles() []string { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1001 | return c.objFiles |
| 1002 | } |
| 1003 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1004 | func (c *CCLibrary) exportedFlags() []string { |
| 1005 | return c.exportFlags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1006 | } |
| 1007 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 1008 | func (c *CCLibrary) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
Colin Cross | e11befc | 2015-04-27 17:49:17 -0700 | [diff] [blame] | 1009 | flags = c.CCLinked.flags(ctx, flags) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1010 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1011 | flags.CFlags = append(flags.CFlags, "-fPIC") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1012 | |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 1013 | if !c.static() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1014 | libName := ctx.ModuleName() |
| 1015 | // GCC for Android assumes that -shared means -Bsymbolic, use -Wl,-shared instead |
| 1016 | sharedFlag := "-Wl,-shared" |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1017 | if c.Properties.Clang || ctx.Host() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1018 | sharedFlag = "-shared" |
| 1019 | } |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1020 | if ctx.Device() { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1021 | flags.LdFlags = append(flags.LdFlags, "-nostdlib") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1022 | } |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1023 | |
| 1024 | flags.LdFlags = append(flags.LdFlags, |
| 1025 | "-Wl,--gc-sections", |
| 1026 | sharedFlag, |
| 1027 | "-Wl,-soname,"+libName+sharedLibraryExtension, |
| 1028 | ) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1029 | } |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1030 | |
| 1031 | return flags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1032 | } |
| 1033 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1034 | func (c *CCLibrary) compileStaticLibrary(ctx common.AndroidModuleContext, |
| 1035 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1036 | |
| 1037 | staticFlags := flags |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1038 | staticFlags.CFlags = append(staticFlags.CFlags, c.LibraryProperties.Static.Cflags...) |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 1039 | objFilesStatic := c.customCompileObjs(ctx, staticFlags, common.DeviceStaticLibrary, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1040 | c.LibraryProperties.Static.Srcs) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1041 | |
| 1042 | objFiles = append(objFiles, objFilesStatic...) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1043 | objFiles = append(objFiles, deps.WholeStaticLibObjFiles...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1044 | |
| 1045 | outputFile := filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+staticLibraryExtension) |
| 1046 | |
| 1047 | TransformObjToStaticLib(ctx, objFiles, ccFlagsToBuilderFlags(flags), outputFile) |
| 1048 | |
| 1049 | c.objFiles = objFiles |
| 1050 | c.out = outputFile |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1051 | includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1052 | c.exportFlags = []string{includeDirsToFlags(includeDirs)} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1053 | |
| 1054 | ctx.CheckbuildFile(outputFile) |
| 1055 | } |
| 1056 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1057 | func (c *CCLibrary) compileSharedLibrary(ctx common.AndroidModuleContext, |
| 1058 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1059 | |
| 1060 | sharedFlags := flags |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1061 | sharedFlags.CFlags = append(sharedFlags.CFlags, c.LibraryProperties.Shared.Cflags...) |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 1062 | objFilesShared := c.customCompileObjs(ctx, sharedFlags, common.DeviceSharedLibrary, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1063 | c.LibraryProperties.Shared.Srcs) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1064 | |
| 1065 | objFiles = append(objFiles, objFilesShared...) |
| 1066 | |
| 1067 | outputFile := filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+sharedLibraryExtension) |
| 1068 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1069 | TransformObjToDynamicBinary(ctx, objFiles, deps.SharedLibs, deps.StaticLibs, |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1070 | deps.LateStaticLibs, deps.WholeStaticLibs, deps.CrtBegin, deps.CrtEnd, false, |
Colin Cross | 77b00fa | 2015-03-16 16:15:49 -0700 | [diff] [blame] | 1071 | ccFlagsToBuilderFlags(flags), outputFile) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1072 | |
| 1073 | c.out = outputFile |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1074 | includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1075 | c.exportFlags = []string{includeDirsToFlags(includeDirs)} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1076 | } |
| 1077 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1078 | func (c *CCLibrary) compileModule(ctx common.AndroidModuleContext, |
| 1079 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1080 | |
| 1081 | // Reuse the object files from the matching static library if it exists |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1082 | if c.getReuseFrom().ccLibrary() == c { |
| 1083 | c.reuseObjFiles = objFiles |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1084 | } else { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1085 | objFiles = append([]string(nil), c.getReuseFrom().getReuseObjFiles()...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1086 | } |
| 1087 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1088 | if c.static() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1089 | c.compileStaticLibrary(ctx, flags, deps, objFiles) |
| 1090 | } else { |
| 1091 | c.compileSharedLibrary(ctx, flags, deps, objFiles) |
| 1092 | } |
| 1093 | } |
| 1094 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1095 | func (c *CCLibrary) installStaticLibrary(ctx common.AndroidModuleContext, flags CCFlags) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1096 | // Static libraries do not get installed. |
| 1097 | } |
| 1098 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1099 | func (c *CCLibrary) installSharedLibrary(ctx common.AndroidModuleContext, flags CCFlags) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1100 | installDir := "lib" |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1101 | if flags.Toolchain.Is64Bit() { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1102 | installDir = "lib64" |
| 1103 | } |
| 1104 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1105 | ctx.InstallFile(filepath.Join(installDir, c.Properties.Relative_install_path), c.out) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1106 | } |
| 1107 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1108 | func (c *CCLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1109 | if c.static() { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1110 | c.installStaticLibrary(ctx, flags) |
| 1111 | } else { |
| 1112 | c.installSharedLibrary(ctx, flags) |
| 1113 | } |
| 1114 | } |
| 1115 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1116 | // |
| 1117 | // Objects (for crt*.o) |
| 1118 | // |
| 1119 | |
| 1120 | type ccObject struct { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1121 | CCBase |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1122 | out string |
| 1123 | } |
| 1124 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1125 | func CCObjectFactory() (blueprint.Module, []interface{}) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1126 | module := &ccObject{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1127 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1128 | return newCCBase(&module.CCBase, module, common.DeviceSupported, common.MultilibBoth) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1129 | } |
| 1130 | |
| 1131 | func (*ccObject) AndroidDynamicDependencies(ctx common.AndroidDynamicDependerModuleContext) []string { |
| 1132 | // object files can't have any dynamic dependencies |
| 1133 | return nil |
| 1134 | } |
| 1135 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 1136 | func (*ccObject) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1137 | // object files can't have any dynamic dependencies |
| 1138 | return CCDeps{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | func (c *ccObject) compileModule(ctx common.AndroidModuleContext, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1142 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1143 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1144 | objFiles = append(objFiles, deps.ObjFiles...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1145 | |
| 1146 | var outputFile string |
| 1147 | if len(objFiles) == 1 { |
| 1148 | outputFile = objFiles[0] |
| 1149 | } else { |
| 1150 | outputFile = filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+".o") |
| 1151 | TransformObjsToObj(ctx, objFiles, ccFlagsToBuilderFlags(flags), outputFile) |
| 1152 | } |
| 1153 | |
| 1154 | c.out = outputFile |
| 1155 | |
| 1156 | ctx.CheckbuildFile(outputFile) |
| 1157 | } |
| 1158 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1159 | func (c *ccObject) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1160 | // Object files do not get installed. |
| 1161 | } |
| 1162 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1163 | func (c *ccObject) outputFile() string { |
| 1164 | return c.out |
| 1165 | } |
| 1166 | |
| 1167 | // |
| 1168 | // Executables |
| 1169 | // |
| 1170 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1171 | type CCBinary struct { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1172 | CCLinked |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1173 | out string |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1174 | BinaryProperties struct { |
| 1175 | // static_executable: compile executable with -static |
| 1176 | Static_executable bool |
| 1177 | |
| 1178 | // stem: set the name of the output |
| 1179 | Stem string `android:"arch_variant"` |
| 1180 | |
Colin Cross | 4ae185c | 2015-03-26 15:12:10 -0700 | [diff] [blame] | 1181 | // suffix: append to the name of the output |
| 1182 | Suffix string `android:"arch_variant"` |
| 1183 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1184 | // prefix_symbols: if set, add an extra objcopy --prefix-symbols= step |
| 1185 | Prefix_symbols string |
| 1186 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1187 | } |
| 1188 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1189 | func (c *CCBinary) buildStatic() bool { |
| 1190 | return c.BinaryProperties.Static_executable |
| 1191 | } |
| 1192 | |
| 1193 | func (c *CCBinary) buildShared() bool { |
| 1194 | return !c.BinaryProperties.Static_executable |
| 1195 | } |
| 1196 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1197 | func (c *CCBinary) getStem(ctx common.AndroidModuleContext) string { |
Colin Cross | 4ae185c | 2015-03-26 15:12:10 -0700 | [diff] [blame] | 1198 | stem := ctx.ModuleName() |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1199 | if c.BinaryProperties.Stem != "" { |
Colin Cross | 4ae185c | 2015-03-26 15:12:10 -0700 | [diff] [blame] | 1200 | stem = c.BinaryProperties.Stem |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1201 | } |
Colin Cross | 4ae185c | 2015-03-26 15:12:10 -0700 | [diff] [blame] | 1202 | |
| 1203 | return stem + c.BinaryProperties.Suffix |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1204 | } |
| 1205 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 1206 | func (c *CCBinary) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | e11befc | 2015-04-27 17:49:17 -0700 | [diff] [blame] | 1207 | depNames = c.CCLinked.depNames(ctx, depNames) |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1208 | if ctx.Device() { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1209 | if c.BinaryProperties.Static_executable { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1210 | depNames.CrtBegin = "crtbegin_static" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1211 | } else { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1212 | depNames.CrtBegin = "crtbegin_dynamic" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1213 | } |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1214 | depNames.CrtEnd = "crtend_android" |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1215 | |
| 1216 | if c.BinaryProperties.Static_executable { |
| 1217 | // static libraries libcompiler_rt, libc and libc_nomalloc need to be linked with |
| 1218 | // --start-group/--end-group along with libgcc. If they are in deps.StaticLibs, |
| 1219 | // move them to the beginning of deps.LateStaticLibs |
| 1220 | var groupLibs []string |
| 1221 | depNames.StaticLibs, groupLibs = filterList(depNames.StaticLibs, |
| 1222 | []string{"libc", "libc_nomalloc", "libcompiler_rt"}) |
| 1223 | depNames.LateStaticLibs = append(groupLibs, depNames.LateStaticLibs...) |
| 1224 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1225 | } |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1226 | return depNames |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1227 | } |
| 1228 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1229 | func NewCCBinary(binary *CCBinary, module CCModuleType, |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1230 | hod common.HostOrDeviceSupported, props ...interface{}) (blueprint.Module, []interface{}) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1231 | |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1232 | props = append(props, &binary.BinaryProperties) |
| 1233 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1234 | return newCCDynamic(&binary.CCLinked, module, hod, common.MultilibFirst, props...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1235 | } |
| 1236 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1237 | func CCBinaryFactory() (blueprint.Module, []interface{}) { |
| 1238 | module := &CCBinary{} |
| 1239 | |
| 1240 | return NewCCBinary(module, module, common.HostAndDeviceSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1241 | } |
| 1242 | |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 1243 | func (c *CCBinary) ModifyProperties(ctx common.AndroidBaseContext) { |
| 1244 | if c.BinaryProperties.Static_executable { |
| 1245 | c.dynamicProperties.VariantIsStaticBinary = true |
| 1246 | } |
| 1247 | } |
| 1248 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 1249 | func (c *CCBinary) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
Colin Cross | e11befc | 2015-04-27 17:49:17 -0700 | [diff] [blame] | 1250 | flags = c.CCLinked.flags(ctx, flags) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1251 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1252 | flags.CFlags = append(flags.CFlags, "-fpie") |
| 1253 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1254 | if ctx.Device() { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1255 | if c.BinaryProperties.Static_executable { |
| 1256 | // Clang driver needs -static to create static executable. |
| 1257 | // However, bionic/linker uses -shared to overwrite. |
| 1258 | // Linker for x86 targets does not allow coexistance of -static and -shared, |
| 1259 | // so we add -static only if -shared is not used. |
| 1260 | if !inList("-shared", flags.LdFlags) { |
| 1261 | flags.LdFlags = append(flags.LdFlags, "-static") |
| 1262 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1263 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1264 | flags.LdFlags = append(flags.LdFlags, |
| 1265 | "-nostdlib", |
| 1266 | "-Bstatic", |
| 1267 | "-Wl,--gc-sections", |
| 1268 | ) |
| 1269 | |
| 1270 | } else { |
| 1271 | linker := "/system/bin/linker" |
| 1272 | if flags.Toolchain.Is64Bit() { |
| 1273 | linker = "/system/bin/linker64" |
| 1274 | } |
| 1275 | |
| 1276 | flags.LdFlags = append(flags.LdFlags, |
| 1277 | "-nostdlib", |
| 1278 | "-Bdynamic", |
| 1279 | fmt.Sprintf("-Wl,-dynamic-linker,%s", linker), |
| 1280 | "-Wl,--gc-sections", |
| 1281 | "-Wl,-z,nocopyreloc", |
| 1282 | ) |
| 1283 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1284 | } |
| 1285 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1286 | return flags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1287 | } |
| 1288 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1289 | func (c *CCBinary) compileModule(ctx common.AndroidModuleContext, |
| 1290 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1291 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1292 | if !c.BinaryProperties.Static_executable && inList("libc", c.Properties.Static_libs) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1293 | ctx.ModuleErrorf("statically linking libc to dynamic executable, please remove libc\n" + |
| 1294 | "from static libs or set static_executable: true") |
| 1295 | } |
| 1296 | |
| 1297 | outputFile := filepath.Join(common.ModuleOutDir(ctx), c.getStem(ctx)) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1298 | c.out = outputFile |
Colin Cross | bfae885 | 2015-03-26 14:44:11 -0700 | [diff] [blame] | 1299 | if c.BinaryProperties.Prefix_symbols != "" { |
| 1300 | afterPrefixSymbols := outputFile |
| 1301 | outputFile = outputFile + ".intermediate" |
| 1302 | TransformBinaryPrefixSymbols(ctx, c.BinaryProperties.Prefix_symbols, outputFile, |
| 1303 | ccFlagsToBuilderFlags(flags), afterPrefixSymbols) |
| 1304 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1305 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1306 | TransformObjToDynamicBinary(ctx, objFiles, deps.SharedLibs, deps.StaticLibs, |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1307 | deps.LateStaticLibs, deps.WholeStaticLibs, deps.CrtBegin, deps.CrtEnd, true, |
Colin Cross | 77b00fa | 2015-03-16 16:15:49 -0700 | [diff] [blame] | 1308 | ccFlagsToBuilderFlags(flags), outputFile) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1309 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1310 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1311 | func (c *CCBinary) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1312 | ctx.InstallFile(filepath.Join("bin", c.Properties.Relative_install_path), c.out) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1313 | } |
| 1314 | |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1315 | type CCTest struct { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1316 | CCBinary |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1317 | |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1318 | TestProperties struct { |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1319 | // test_per_src: Create a separate test for each source file. Useful when there is |
| 1320 | // global state that can not be torn down and reset between each test suite. |
| 1321 | Test_per_src bool |
| 1322 | } |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1323 | } |
| 1324 | |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1325 | func (c *CCTest) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 1326 | flags = c.CCBinary.flags(ctx, flags) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1327 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1328 | flags.CFlags = append(flags.CFlags, "-DGTEST_HAS_STD_STRING") |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1329 | if ctx.Host() { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1330 | flags.CFlags = append(flags.CFlags, "-O0", "-g") |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1331 | flags.LdFlags = append(flags.LdFlags, "-lpthread") |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | // TODO(danalbert): Make gtest export its dependencies. |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1335 | flags.CFlags = append(flags.CFlags, |
| 1336 | "-I"+filepath.Join(ctx.AConfig().SrcDir(), "external/gtest/include")) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1337 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1338 | return flags |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1339 | } |
| 1340 | |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1341 | func (c *CCTest) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 1342 | depNames = c.CCBinary.depNames(ctx, depNames) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1343 | depNames.StaticLibs = append(depNames.StaticLibs, "libgtest", "libgtest_main") |
| 1344 | return depNames |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1347 | func (c *CCTest) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1348 | if ctx.Device() { |
Tim Kilbourn | 5ccc730 | 2015-03-19 10:02:21 -0700 | [diff] [blame] | 1349 | ctx.InstallFile("../data/nativetest/"+ctx.ModuleName(), c.out) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1350 | } else { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1351 | c.CCBinary.installModule(ctx, flags) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1352 | } |
| 1353 | } |
| 1354 | |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1355 | func (c *CCTest) testPerSrc() bool { |
| 1356 | return c.TestProperties.Test_per_src |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1357 | } |
| 1358 | |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1359 | func (c *CCTest) test() *CCTest { |
| 1360 | return c |
| 1361 | } |
| 1362 | |
| 1363 | func NewCCTest(test *CCTest, module CCModuleType, |
| 1364 | hod common.HostOrDeviceSupported, props ...interface{}) (blueprint.Module, []interface{}) { |
| 1365 | |
| 1366 | props = append(props, &test.TestProperties) |
| 1367 | |
| 1368 | return NewCCBinary(&test.CCBinary, module, hod, props...) |
| 1369 | } |
| 1370 | |
| 1371 | func CCTestFactory() (blueprint.Module, []interface{}) { |
| 1372 | module := &CCTest{} |
| 1373 | |
| 1374 | return NewCCTest(module, module, common.HostAndDeviceSupported) |
| 1375 | } |
| 1376 | |
| 1377 | type testPerSrc interface { |
| 1378 | test() *CCTest |
| 1379 | testPerSrc() bool |
| 1380 | } |
| 1381 | |
| 1382 | var _ testPerSrc = (*CCTest)(nil) |
| 1383 | |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1384 | func TestPerSrcMutator(mctx blueprint.EarlyMutatorContext) { |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1385 | if test, ok := mctx.Module().(testPerSrc); ok { |
| 1386 | if test.testPerSrc() { |
| 1387 | testNames := make([]string, len(test.test().Properties.Srcs)) |
| 1388 | for i, src := range test.test().Properties.Srcs { |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1389 | testNames[i] = strings.TrimSuffix(src, filepath.Ext(src)) |
| 1390 | } |
| 1391 | tests := mctx.CreateLocalVariations(testNames...) |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1392 | for i, src := range test.test().Properties.Srcs { |
| 1393 | tests[i].(testPerSrc).test().Properties.Srcs = []string{src} |
| 1394 | tests[i].(testPerSrc).test().BinaryProperties.Stem = testNames[i] |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1395 | } |
| 1396 | } |
| 1397 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1398 | } |
| 1399 | |
| 1400 | // |
| 1401 | // Static library |
| 1402 | // |
| 1403 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1404 | func CCLibraryStaticFactory() (blueprint.Module, []interface{}) { |
| 1405 | module := &CCLibrary{} |
| 1406 | module.LibraryProperties.BuildStatic = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1407 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1408 | return NewCCLibrary(module, module, common.HostAndDeviceSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1409 | } |
| 1410 | |
| 1411 | // |
| 1412 | // Shared libraries |
| 1413 | // |
| 1414 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1415 | func CCLibrarySharedFactory() (blueprint.Module, []interface{}) { |
| 1416 | module := &CCLibrary{} |
| 1417 | module.LibraryProperties.BuildShared = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1418 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1419 | return NewCCLibrary(module, module, common.HostAndDeviceSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1420 | } |
| 1421 | |
| 1422 | // |
| 1423 | // Host static library |
| 1424 | // |
| 1425 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1426 | func CCLibraryHostStaticFactory() (blueprint.Module, []interface{}) { |
| 1427 | module := &CCLibrary{} |
| 1428 | module.LibraryProperties.BuildStatic = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1429 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1430 | return NewCCLibrary(module, module, common.HostSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1431 | } |
| 1432 | |
| 1433 | // |
| 1434 | // Host Shared libraries |
| 1435 | // |
| 1436 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1437 | func CCLibraryHostSharedFactory() (blueprint.Module, []interface{}) { |
| 1438 | module := &CCLibrary{} |
| 1439 | module.LibraryProperties.BuildShared = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1440 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1441 | return NewCCLibrary(module, module, common.HostSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | // |
| 1445 | // Host Binaries |
| 1446 | // |
| 1447 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1448 | func CCBinaryHostFactory() (blueprint.Module, []interface{}) { |
| 1449 | module := &CCBinary{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1450 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1451 | return NewCCBinary(module, module, common.HostSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1452 | } |
| 1453 | |
| 1454 | // |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1455 | // Host Tests |
| 1456 | // |
| 1457 | |
| 1458 | func CCTestHostFactory() (blueprint.Module, []interface{}) { |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1459 | module := &CCTest{} |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1460 | return NewCCBinary(&module.CCBinary, module, common.HostSupported, |
Colin Cross | 9ffb4f5 | 2015-04-24 17:48:09 -0700 | [diff] [blame] | 1461 | &module.TestProperties) |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1462 | } |
| 1463 | |
| 1464 | // |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1465 | // Device libraries shipped with gcc |
| 1466 | // |
| 1467 | |
| 1468 | type toolchainLibrary struct { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1469 | CCLibrary |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1470 | } |
| 1471 | |
| 1472 | func (*toolchainLibrary) AndroidDynamicDependencies(ctx common.AndroidDynamicDependerModuleContext) []string { |
| 1473 | // toolchain libraries can't have any dependencies |
| 1474 | return nil |
| 1475 | } |
| 1476 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 1477 | func (*toolchainLibrary) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1478 | // toolchain libraries can't have any dependencies |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1479 | return CCDeps{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1480 | } |
| 1481 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1482 | func ToolchainLibraryFactory() (blueprint.Module, []interface{}) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1483 | module := &toolchainLibrary{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1484 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1485 | module.LibraryProperties.BuildStatic = true |
| 1486 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1487 | return newCCBase(&module.CCBase, module, common.DeviceSupported, common.MultilibBoth, |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1488 | &module.LibraryProperties) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1489 | } |
| 1490 | |
| 1491 | func (c *toolchainLibrary) compileModule(ctx common.AndroidModuleContext, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1492 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1493 | |
| 1494 | libName := ctx.ModuleName() + staticLibraryExtension |
| 1495 | outputFile := filepath.Join(common.ModuleOutDir(ctx), libName) |
| 1496 | |
| 1497 | CopyGccLib(ctx, libName, ccFlagsToBuilderFlags(flags), outputFile) |
| 1498 | |
| 1499 | c.out = outputFile |
| 1500 | |
| 1501 | ctx.CheckbuildFile(outputFile) |
| 1502 | } |
| 1503 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1504 | func (c *toolchainLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1505 | // Toolchain libraries do not get installed. |
| 1506 | } |
| 1507 | |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1508 | // NDK prebuilt libraries. |
| 1509 | // |
| 1510 | // These differ from regular prebuilts in that they aren't stripped and usually aren't installed |
| 1511 | // either (with the exception of the shared STLs, which are installed to the app's directory rather |
| 1512 | // than to the system image). |
| 1513 | |
| 1514 | func getNdkLibDir(ctx common.AndroidModuleContext, toolchain Toolchain, version string) string { |
| 1515 | return fmt.Sprintf("%s/prebuilts/ndk/current/platforms/android-%s/arch-%s/usr/lib", |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 1516 | ctx.AConfig().SrcDir(), version, toolchain.Name()) |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1517 | } |
| 1518 | |
| 1519 | type ndkPrebuiltLibrary struct { |
| 1520 | CCLibrary |
| 1521 | } |
| 1522 | |
| 1523 | func (*ndkPrebuiltLibrary) AndroidDynamicDependencies( |
| 1524 | ctx common.AndroidDynamicDependerModuleContext) []string { |
| 1525 | |
| 1526 | // NDK libraries can't have any dependencies |
| 1527 | return nil |
| 1528 | } |
| 1529 | |
Colin Cross | 0676e2d | 2015-04-24 17:39:18 -0700 | [diff] [blame] | 1530 | func (*ndkPrebuiltLibrary) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1531 | // NDK libraries can't have any dependencies |
| 1532 | return CCDeps{} |
| 1533 | } |
| 1534 | |
| 1535 | func NdkPrebuiltLibraryFactory() (blueprint.Module, []interface{}) { |
| 1536 | module := &ndkPrebuiltLibrary{} |
| 1537 | module.LibraryProperties.BuildShared = true |
| 1538 | return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported) |
| 1539 | } |
| 1540 | |
| 1541 | func (c *ndkPrebuiltLibrary) compileModule(ctx common.AndroidModuleContext, flags CCFlags, |
| 1542 | deps CCDeps, objFiles []string) { |
| 1543 | // A null build step, but it sets up the output path. |
| 1544 | if !strings.HasPrefix(ctx.ModuleName(), "ndk_lib") { |
| 1545 | ctx.ModuleErrorf("NDK prebuilts must have an ndk_lib prefixed name") |
| 1546 | } |
| 1547 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1548 | includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1549 | c.exportFlags = []string{common.JoinWithPrefix(includeDirs, "-isystem ")} |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1550 | |
| 1551 | // NDK prebuilt libraries are named like: ndk_LIBNAME.SDK_VERSION. |
| 1552 | // We want to translate to just LIBNAME. |
| 1553 | libName := strings.Split(strings.TrimPrefix(ctx.ModuleName(), "ndk_"), ".")[0] |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1554 | libDir := getNdkLibDir(ctx, flags.Toolchain, c.Properties.Sdk_version) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1555 | c.out = filepath.Join(libDir, libName+sharedLibraryExtension) |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1556 | } |
| 1557 | |
| 1558 | func (c *ndkPrebuiltLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
| 1559 | // Toolchain libraries do not get installed. |
| 1560 | } |
| 1561 | |
| 1562 | // The NDK STLs are slightly different from the prebuilt system libraries: |
| 1563 | // * Are not specific to each platform version. |
| 1564 | // * The libraries are not in a predictable location for each STL. |
| 1565 | |
| 1566 | type ndkPrebuiltStl struct { |
| 1567 | ndkPrebuiltLibrary |
| 1568 | } |
| 1569 | |
| 1570 | type ndkPrebuiltStaticStl struct { |
| 1571 | ndkPrebuiltStl |
| 1572 | } |
| 1573 | |
| 1574 | type ndkPrebuiltSharedStl struct { |
| 1575 | ndkPrebuiltStl |
| 1576 | } |
| 1577 | |
| 1578 | func NdkPrebuiltSharedStlFactory() (blueprint.Module, []interface{}) { |
| 1579 | module := &ndkPrebuiltSharedStl{} |
| 1580 | module.LibraryProperties.BuildShared = true |
| 1581 | return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported) |
| 1582 | } |
| 1583 | |
| 1584 | func NdkPrebuiltStaticStlFactory() (blueprint.Module, []interface{}) { |
| 1585 | module := &ndkPrebuiltStaticStl{} |
| 1586 | module.LibraryProperties.BuildStatic = true |
| 1587 | return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported) |
| 1588 | } |
| 1589 | |
| 1590 | func getNdkStlLibDir(ctx common.AndroidModuleContext, toolchain Toolchain, stl string) string { |
| 1591 | gccVersion := toolchain.GccVersion() |
| 1592 | var libDir string |
| 1593 | switch stl { |
| 1594 | case "libstlport": |
| 1595 | libDir = "cxx-stl/stlport/libs" |
| 1596 | case "libc++": |
| 1597 | libDir = "cxx-stl/llvm-libc++/libs" |
| 1598 | case "libgnustl": |
| 1599 | libDir = fmt.Sprintf("cxx-stl/gnu-libstdc++/%s/libs", gccVersion) |
| 1600 | } |
| 1601 | |
| 1602 | if libDir != "" { |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 1603 | ndkSrcRoot := ctx.AConfig().SrcDir() + "/prebuilts/ndk/current/sources" |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1604 | return fmt.Sprintf("%s/%s/%s", ndkSrcRoot, libDir, ctx.Arch().Abi) |
| 1605 | } |
| 1606 | |
| 1607 | ctx.ModuleErrorf("Unknown NDK STL: %s", stl) |
| 1608 | return "" |
| 1609 | } |
| 1610 | |
| 1611 | func (c *ndkPrebuiltStl) compileModule(ctx common.AndroidModuleContext, flags CCFlags, |
| 1612 | deps CCDeps, objFiles []string) { |
| 1613 | // A null build step, but it sets up the output path. |
| 1614 | if !strings.HasPrefix(ctx.ModuleName(), "ndk_lib") { |
| 1615 | ctx.ModuleErrorf("NDK prebuilts must have an ndk_lib prefixed name") |
| 1616 | } |
| 1617 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame] | 1618 | includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1619 | c.exportFlags = []string{includeDirsToFlags(includeDirs)} |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1620 | |
| 1621 | libName := strings.TrimPrefix(ctx.ModuleName(), "ndk_") |
| 1622 | libExt := sharedLibraryExtension |
| 1623 | if c.LibraryProperties.BuildStatic { |
| 1624 | libExt = staticLibraryExtension |
| 1625 | } |
| 1626 | |
| 1627 | stlName := strings.TrimSuffix(libName, "_shared") |
| 1628 | stlName = strings.TrimSuffix(stlName, "_static") |
| 1629 | libDir := getNdkStlLibDir(ctx, flags.Toolchain, stlName) |
| 1630 | c.out = libDir + "/" + libName + libExt |
| 1631 | } |
| 1632 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1633 | func LinkageMutator(mctx blueprint.EarlyMutatorContext) { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1634 | if c, ok := mctx.Module().(ccLinkedInterface); ok { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1635 | var modules []blueprint.Module |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1636 | if c.buildStatic() && c.buildShared() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1637 | modules = mctx.CreateLocalVariations("static", "shared") |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 1638 | modules[0].(ccLinkedInterface).setStatic(true) |
| 1639 | modules[1].(ccLinkedInterface).setStatic(false) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1640 | } else if c.buildStatic() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1641 | modules = mctx.CreateLocalVariations("static") |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 1642 | modules[0].(ccLinkedInterface).setStatic(true) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1643 | } else if c.buildShared() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1644 | modules = mctx.CreateLocalVariations("shared") |
Colin Cross | 18b6dc5 | 2015-04-28 13:20:37 -0700 | [diff] [blame^] | 1645 | modules[0].(ccLinkedInterface).setStatic(false) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1646 | } else { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1647 | panic(fmt.Errorf("ccLibrary %q not static or shared", mctx.ModuleName())) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1648 | } |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1649 | |
| 1650 | if _, ok := c.(ccLibraryInterface); ok { |
| 1651 | reuseFrom := modules[0].(ccLibraryInterface) |
| 1652 | for _, m := range modules { |
| 1653 | m.(ccLibraryInterface).setReuseFrom(reuseFrom) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1654 | } |
| 1655 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1656 | } |
| 1657 | } |