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 |
| 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 |
| 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 | 21b9a24 | 2015-03-24 14:15:58 -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 | |
| 358 | func (c *CCBase) DepNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
| 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{} |
| 370 | depNames = c.module.DepNames(ctx, depNames) |
| 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 | 21b9a24 | 2015-03-24 14:15:58 -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 | fa13879 | 2015-04-24 17:31:52 -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 { |
| 689 | VariantIsShared bool `blueprint:"mutated"` |
| 690 | VariantIsStatic bool `blueprint:"mutated"` |
| 691 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 692 | } |
| 693 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 694 | func newCCDynamic(dynamic *CCLinked, module CCModuleType, hod common.HostOrDeviceSupported, |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 695 | multilib common.Multilib, props ...interface{}) (blueprint.Module, []interface{}) { |
| 696 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 697 | props = append(props, &dynamic.dynamicProperties) |
| 698 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 699 | return newCCBase(&dynamic.CCBase, module, hod, multilib, props...) |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 700 | } |
| 701 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 702 | func (c *CCLinked) systemSharedLibs(ctx common.AndroidBaseContext) []string { |
Colin Cross | 28d7659 | 2015-03-26 16:14:04 -0700 | [diff] [blame] | 703 | if ctx.ContainsProperty("system_shared_libs") { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 704 | return c.Properties.System_shared_libs |
| 705 | } else if ctx.Device() && c.Properties.Sdk_version == "" { |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 706 | return []string{"libc", "libm"} |
Colin Cross | 28d7659 | 2015-03-26 16:14:04 -0700 | [diff] [blame] | 707 | } else { |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 708 | return nil |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 709 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 710 | } |
| 711 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 712 | func (c *CCLinked) stl(ctx common.AndroidBaseContext) string { |
| 713 | if c.Properties.Sdk_version != "" && ctx.Device() { |
| 714 | switch c.Properties.Stl { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 715 | case "": |
| 716 | return "ndk_system" |
| 717 | case "c++_shared", "c++_static", |
| 718 | "stlport_shared", "stlport_static", |
| 719 | "gnustl_static": |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 720 | return "ndk_lib" + c.Properties.Stl |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 721 | default: |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 722 | 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] | 723 | return "" |
| 724 | } |
| 725 | } |
| 726 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 727 | switch c.Properties.Stl { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 728 | case "libc++", "libc++_static", |
| 729 | "stlport", "stlport_static", |
| 730 | "libstdc++": |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 731 | return c.Properties.Stl |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 732 | case "none": |
| 733 | return "" |
| 734 | case "": |
| 735 | if c.shared() { |
| 736 | return "libc++" // TODO: mingw needs libstdc++ |
| 737 | } else { |
| 738 | return "libc++_static" |
| 739 | } |
| 740 | default: |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 741 | ctx.ModuleErrorf("stl: %q is not a supported STL", c.Properties.Stl) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 742 | return "" |
| 743 | } |
| 744 | } |
| 745 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 746 | func (c *CCLinked) Flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 747 | stl := c.stl(ctx) |
| 748 | if ctx.Failed() { |
| 749 | return flags |
| 750 | } |
| 751 | |
| 752 | switch stl { |
| 753 | case "libc++", "libc++_static": |
| 754 | flags.CFlags = append(flags.CFlags, "-D_USING_LIBCXX") |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 755 | flags.CFlags = append(flags.CFlags, "-I${SrcDir}/external/libcxx/include") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 756 | if ctx.Host() { |
| 757 | flags.CppFlags = append(flags.CppFlags, "-nostdinc++") |
| 758 | flags.LdFlags = append(flags.LdFlags, "-nodefaultlibs") |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 759 | flags.LdFlags = append(flags.LdFlags, "-lc", "-lm", "-lpthread") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 760 | } |
| 761 | case "stlport", "stlport_static": |
| 762 | if ctx.Device() { |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 763 | flags.CFlags = append(flags.CFlags, |
| 764 | "-I${SrcDir}/external/stlport/stlport", |
| 765 | "-I${SrcDir}/bionic/libstdc++/include", |
| 766 | "-I${SrcDir}/bionic") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 767 | } |
| 768 | case "libstdc++": |
| 769 | // Using bionic's basic libstdc++. Not actually an STL. Only around until the |
| 770 | // tree is in good enough shape to not need it. |
| 771 | // Host builds will use GNU libstdc++. |
| 772 | if ctx.Device() { |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 773 | flags.CFlags = append(flags.CFlags, "-I${SrcDir}/bionic/libstdc++/include") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 774 | } |
| 775 | case "ndk_system": |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 776 | ndkSrcRoot := ctx.AConfig().SrcDir() + "/prebuilts/ndk/current/sources/" |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 777 | flags.CFlags = append(flags.CFlags, "-isystem "+ndkSrcRoot+"cxx-stl/system/include") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 778 | case "ndk_libc++_shared", "ndk_libc++_static": |
| 779 | // TODO(danalbert): This really shouldn't be here... |
| 780 | flags.CppFlags = append(flags.CppFlags, "-std=c++11") |
| 781 | case "ndk_libstlport_shared", "ndk_libstlport_static", "ndk_libgnustl_static": |
| 782 | // Nothing |
| 783 | case "": |
| 784 | // None or error. |
| 785 | if ctx.Host() { |
| 786 | flags.CppFlags = append(flags.CppFlags, "-nostdinc++") |
| 787 | flags.LdFlags = append(flags.LdFlags, "-nodefaultlibs") |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 788 | flags.LdFlags = append(flags.LdFlags, "-lc", "-lm") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 789 | } |
| 790 | default: |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 791 | panic(fmt.Errorf("Unknown stl in CCLinked.Flags: %q", stl)) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | return flags |
| 795 | } |
| 796 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 797 | func (c *CCLinked) DepNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
| 798 | depNames = c.CCBase.DepNames(ctx, depNames) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 799 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 800 | stl := c.stl(ctx) |
| 801 | if ctx.Failed() { |
| 802 | return depNames |
| 803 | } |
| 804 | |
| 805 | switch stl { |
| 806 | case "libc++": |
| 807 | depNames.SharedLibs = append(depNames.SharedLibs, stl) |
| 808 | case "libstdc++": |
| 809 | if ctx.Device() { |
| 810 | depNames.SharedLibs = append(depNames.SharedLibs, stl) |
| 811 | } |
| 812 | case "libc++_static": |
| 813 | depNames.StaticLibs = append(depNames.StaticLibs, stl) |
| 814 | case "stlport": |
| 815 | depNames.SharedLibs = append(depNames.SharedLibs, "libstdc++", "libstlport") |
| 816 | case "stlport_static": |
| 817 | depNames.StaticLibs = append(depNames.StaticLibs, "libstdc++", "libstlport_static") |
| 818 | case "": |
| 819 | // None or error. |
| 820 | case "ndk_system": |
| 821 | // TODO: Make a system STL prebuilt for the NDK. |
| 822 | // 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^] | 823 | // its own includes. The includes are handled in CCBase.Flags(). |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 824 | depNames.SharedLibs = append([]string{"libstdc++"}, depNames.SharedLibs...) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 825 | case "ndk_libc++_shared", "ndk_libstlport_shared": |
| 826 | depNames.SharedLibs = append(depNames.SharedLibs, stl) |
| 827 | case "ndk_libc++_static", "ndk_libstlport_static", "ndk_libgnustl_static": |
| 828 | depNames.StaticLibs = append(depNames.StaticLibs, stl) |
| 829 | default: |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 830 | panic(fmt.Errorf("Unknown stl in CCLinked.DepNames: %q", stl)) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 831 | } |
| 832 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 833 | if ctx.Device() { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 834 | if ctx.ModuleName() != "libcompiler_rt-extras" { |
| 835 | depNames.StaticLibs = append(depNames.StaticLibs, "libcompiler_rt-extras") |
| 836 | } |
Colin Cross | 77b00fa | 2015-03-16 16:15:49 -0700 | [diff] [blame] | 837 | // libgcc and libatomic have to be last on the command line |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 838 | depNames.LateStaticLibs = append(depNames.LateStaticLibs, "libgcov", "libatomic", "libgcc") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 839 | |
| 840 | if c.shared() { |
| 841 | depNames.SharedLibs = append(depNames.SharedLibs, c.systemSharedLibs(ctx)...) |
| 842 | } |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 843 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 844 | if c.Properties.Sdk_version != "" { |
| 845 | version := c.Properties.Sdk_version |
Colin Cross | 577f6e4 | 2015-03-27 18:23:34 -0700 | [diff] [blame] | 846 | depNames.SharedLibs = append(depNames.SharedLibs, |
| 847 | "ndk_libc."+version, |
| 848 | "ndk_libm."+version, |
| 849 | ) |
| 850 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 851 | } |
| 852 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 853 | return depNames |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 854 | } |
| 855 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 856 | // ccLinkedInterface interface is used on ccLinked to deal with static or shared variants |
| 857 | type ccLinkedInterface interface { |
| 858 | // Returns true if the build options for the module have selected a static or shared build |
| 859 | buildStatic() bool |
| 860 | buildShared() bool |
| 861 | |
| 862 | // Sets whether a specific variant is static or shared |
| 863 | setStatic() |
| 864 | setShared() |
| 865 | |
| 866 | // Returns whether a specific variant is static or shared |
| 867 | static() bool |
| 868 | shared() bool |
| 869 | } |
| 870 | |
| 871 | var _ ccLinkedInterface = (*CCLibrary)(nil) |
| 872 | var _ ccLinkedInterface = (*CCBinary)(nil) |
| 873 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 874 | func (c *CCLinked) static() bool { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 875 | return c.dynamicProperties.VariantIsStatic |
| 876 | } |
| 877 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 878 | func (c *CCLinked) shared() bool { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 879 | return c.dynamicProperties.VariantIsShared |
| 880 | } |
| 881 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 882 | func (c *CCLinked) setStatic() { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 883 | c.dynamicProperties.VariantIsStatic = true |
| 884 | } |
| 885 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 886 | func (c *CCLinked) setShared() { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 887 | c.dynamicProperties.VariantIsShared = true |
| 888 | } |
| 889 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 890 | type ccExportedFlagsProducer interface { |
| 891 | exportedFlags() []string |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 892 | } |
| 893 | |
| 894 | // |
| 895 | // Combined static+shared libraries |
| 896 | // |
| 897 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 898 | type CCLibrary struct { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 899 | CCLinked |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 900 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 901 | reuseFrom ccLibraryInterface |
| 902 | reuseObjFiles []string |
| 903 | objFiles []string |
| 904 | exportFlags []string |
| 905 | out string |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 906 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 907 | LibraryProperties struct { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 908 | BuildStatic bool `blueprint:"mutated"` |
| 909 | BuildShared bool `blueprint:"mutated"` |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 910 | Static struct { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 911 | Srcs []string `android:"arch_variant"` |
| 912 | Cflags []string `android:"arch_variant"` |
| 913 | } `android:"arch_variant"` |
| 914 | Shared struct { |
| 915 | Srcs []string `android:"arch_variant"` |
| 916 | Cflags []string `android:"arch_variant"` |
| 917 | } `android:"arch_variant"` |
| 918 | } |
| 919 | } |
| 920 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 921 | func (c *CCLibrary) buildStatic() bool { |
| 922 | return c.LibraryProperties.BuildStatic |
| 923 | } |
| 924 | |
| 925 | func (c *CCLibrary) buildShared() bool { |
| 926 | return c.LibraryProperties.BuildShared |
| 927 | } |
| 928 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 929 | type ccLibraryInterface interface { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 930 | ccLinkedInterface |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 931 | ccLibrary() *CCLibrary |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 932 | setReuseFrom(ccLibraryInterface) |
| 933 | getReuseFrom() ccLibraryInterface |
| 934 | getReuseObjFiles() []string |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 935 | allObjFiles() []string |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 936 | } |
| 937 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 938 | var _ ccLibraryInterface = (*CCLibrary)(nil) |
| 939 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 940 | func (c *CCLibrary) ccLibrary() *CCLibrary { |
| 941 | return c |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 942 | } |
| 943 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 944 | func NewCCLibrary(library *CCLibrary, module CCModuleType, |
| 945 | hod common.HostOrDeviceSupported) (blueprint.Module, []interface{}) { |
| 946 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 947 | return newCCDynamic(&library.CCLinked, module, hod, common.MultilibBoth, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 948 | &library.LibraryProperties) |
| 949 | } |
| 950 | |
| 951 | func CCLibraryFactory() (blueprint.Module, []interface{}) { |
| 952 | module := &CCLibrary{} |
| 953 | |
| 954 | module.LibraryProperties.BuildShared = true |
| 955 | module.LibraryProperties.BuildStatic = true |
| 956 | |
| 957 | return NewCCLibrary(module, module, common.HostAndDeviceSupported) |
| 958 | } |
| 959 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 960 | func (c *CCLibrary) DepNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 961 | depNames = c.CCLinked.DepNames(ctx, depNames) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 962 | if c.shared() { |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 963 | if ctx.Device() { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 964 | depNames.CrtBegin = "crtbegin_so" |
| 965 | depNames.CrtEnd = "crtend_so" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 966 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 967 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 968 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 969 | return depNames |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 970 | } |
| 971 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 972 | func (c *CCLibrary) outputFile() string { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 973 | return c.out |
| 974 | } |
| 975 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 976 | func (c *CCLibrary) getReuseObjFiles() []string { |
| 977 | return c.reuseObjFiles |
| 978 | } |
| 979 | |
| 980 | func (c *CCLibrary) setReuseFrom(reuseFrom ccLibraryInterface) { |
| 981 | c.reuseFrom = reuseFrom |
| 982 | } |
| 983 | |
| 984 | func (c *CCLibrary) getReuseFrom() ccLibraryInterface { |
| 985 | return c.reuseFrom |
| 986 | } |
| 987 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 988 | func (c *CCLibrary) allObjFiles() []string { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 989 | return c.objFiles |
| 990 | } |
| 991 | |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 992 | func (c *CCLibrary) exportedFlags() []string { |
| 993 | return c.exportFlags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 994 | } |
| 995 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 996 | func (c *CCLibrary) Flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 997 | flags = c.CCLinked.Flags(ctx, flags) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 998 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 999 | flags.CFlags = append(flags.CFlags, "-fPIC") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1000 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1001 | if c.shared() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1002 | libName := ctx.ModuleName() |
| 1003 | // GCC for Android assumes that -shared means -Bsymbolic, use -Wl,-shared instead |
| 1004 | sharedFlag := "-Wl,-shared" |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1005 | if c.Properties.Clang || ctx.Host() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1006 | sharedFlag = "-shared" |
| 1007 | } |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1008 | if ctx.Device() { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1009 | flags.LdFlags = append(flags.LdFlags, "-nostdlib") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1010 | } |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1011 | |
| 1012 | flags.LdFlags = append(flags.LdFlags, |
| 1013 | "-Wl,--gc-sections", |
| 1014 | sharedFlag, |
| 1015 | "-Wl,-soname,"+libName+sharedLibraryExtension, |
| 1016 | ) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1017 | } |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1018 | |
| 1019 | return flags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1020 | } |
| 1021 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1022 | func (c *CCLibrary) compileStaticLibrary(ctx common.AndroidModuleContext, |
| 1023 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1024 | |
| 1025 | staticFlags := flags |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1026 | staticFlags.CFlags = append(staticFlags.CFlags, c.LibraryProperties.Static.Cflags...) |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 1027 | objFilesStatic := c.customCompileObjs(ctx, staticFlags, common.DeviceStaticLibrary, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1028 | c.LibraryProperties.Static.Srcs) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1029 | |
| 1030 | objFiles = append(objFiles, objFilesStatic...) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1031 | objFiles = append(objFiles, deps.WholeStaticLibObjFiles...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1032 | |
| 1033 | outputFile := filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+staticLibraryExtension) |
| 1034 | |
| 1035 | TransformObjToStaticLib(ctx, objFiles, ccFlagsToBuilderFlags(flags), outputFile) |
| 1036 | |
| 1037 | c.objFiles = objFiles |
| 1038 | c.out = outputFile |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1039 | includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1040 | c.exportFlags = []string{includeDirsToFlags(includeDirs)} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1041 | |
| 1042 | ctx.CheckbuildFile(outputFile) |
| 1043 | } |
| 1044 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1045 | func (c *CCLibrary) compileSharedLibrary(ctx common.AndroidModuleContext, |
| 1046 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1047 | |
| 1048 | sharedFlags := flags |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1049 | sharedFlags.CFlags = append(sharedFlags.CFlags, c.LibraryProperties.Shared.Cflags...) |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 1050 | objFilesShared := c.customCompileObjs(ctx, sharedFlags, common.DeviceSharedLibrary, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1051 | c.LibraryProperties.Shared.Srcs) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1052 | |
| 1053 | objFiles = append(objFiles, objFilesShared...) |
| 1054 | |
| 1055 | outputFile := filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+sharedLibraryExtension) |
| 1056 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1057 | TransformObjToDynamicBinary(ctx, objFiles, deps.SharedLibs, deps.StaticLibs, |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1058 | deps.LateStaticLibs, deps.WholeStaticLibs, deps.CrtBegin, deps.CrtEnd, false, |
Colin Cross | 77b00fa | 2015-03-16 16:15:49 -0700 | [diff] [blame] | 1059 | ccFlagsToBuilderFlags(flags), outputFile) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1060 | |
| 1061 | c.out = outputFile |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1062 | includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1063 | c.exportFlags = []string{includeDirsToFlags(includeDirs)} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1064 | } |
| 1065 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1066 | func (c *CCLibrary) compileModule(ctx common.AndroidModuleContext, |
| 1067 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1068 | |
| 1069 | // Reuse the object files from the matching static library if it exists |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1070 | if c.getReuseFrom().ccLibrary() == c { |
| 1071 | c.reuseObjFiles = objFiles |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1072 | } else { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1073 | objFiles = append([]string(nil), c.getReuseFrom().getReuseObjFiles()...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1074 | } |
| 1075 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1076 | if c.static() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1077 | c.compileStaticLibrary(ctx, flags, deps, objFiles) |
| 1078 | } else { |
| 1079 | c.compileSharedLibrary(ctx, flags, deps, objFiles) |
| 1080 | } |
| 1081 | } |
| 1082 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1083 | func (c *CCLibrary) installStaticLibrary(ctx common.AndroidModuleContext, flags CCFlags) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1084 | // Static libraries do not get installed. |
| 1085 | } |
| 1086 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1087 | func (c *CCLibrary) installSharedLibrary(ctx common.AndroidModuleContext, flags CCFlags) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1088 | installDir := "lib" |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1089 | if flags.Toolchain.Is64Bit() { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1090 | installDir = "lib64" |
| 1091 | } |
| 1092 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1093 | ctx.InstallFile(filepath.Join(installDir, c.Properties.Relative_install_path), c.out) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1096 | func (c *CCLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1097 | if c.static() { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1098 | c.installStaticLibrary(ctx, flags) |
| 1099 | } else { |
| 1100 | c.installSharedLibrary(ctx, flags) |
| 1101 | } |
| 1102 | } |
| 1103 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1104 | // |
| 1105 | // Objects (for crt*.o) |
| 1106 | // |
| 1107 | |
| 1108 | type ccObject struct { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1109 | CCBase |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1110 | out string |
| 1111 | } |
| 1112 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1113 | func CCObjectFactory() (blueprint.Module, []interface{}) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1114 | module := &ccObject{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1115 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1116 | return newCCBase(&module.CCBase, module, common.DeviceSupported, common.MultilibBoth) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | func (*ccObject) AndroidDynamicDependencies(ctx common.AndroidDynamicDependerModuleContext) []string { |
| 1120 | // object files can't have any dynamic dependencies |
| 1121 | return nil |
| 1122 | } |
| 1123 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1124 | func (*ccObject) DepNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
| 1125 | // object files can't have any dynamic dependencies |
| 1126 | return CCDeps{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1127 | } |
| 1128 | |
| 1129 | func (c *ccObject) compileModule(ctx common.AndroidModuleContext, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1130 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1131 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1132 | objFiles = append(objFiles, deps.ObjFiles...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1133 | |
| 1134 | var outputFile string |
| 1135 | if len(objFiles) == 1 { |
| 1136 | outputFile = objFiles[0] |
| 1137 | } else { |
| 1138 | outputFile = filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+".o") |
| 1139 | TransformObjsToObj(ctx, objFiles, ccFlagsToBuilderFlags(flags), outputFile) |
| 1140 | } |
| 1141 | |
| 1142 | c.out = outputFile |
| 1143 | |
| 1144 | ctx.CheckbuildFile(outputFile) |
| 1145 | } |
| 1146 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1147 | func (c *ccObject) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1148 | // Object files do not get installed. |
| 1149 | } |
| 1150 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1151 | func (c *ccObject) outputFile() string { |
| 1152 | return c.out |
| 1153 | } |
| 1154 | |
| 1155 | // |
| 1156 | // Executables |
| 1157 | // |
| 1158 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1159 | type CCBinary struct { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1160 | CCLinked |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1161 | out string |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1162 | BinaryProperties struct { |
| 1163 | // static_executable: compile executable with -static |
| 1164 | Static_executable bool |
| 1165 | |
| 1166 | // stem: set the name of the output |
| 1167 | Stem string `android:"arch_variant"` |
| 1168 | |
Colin Cross | 4ae185c | 2015-03-26 15:12:10 -0700 | [diff] [blame] | 1169 | // suffix: append to the name of the output |
| 1170 | Suffix string `android:"arch_variant"` |
| 1171 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1172 | // prefix_symbols: if set, add an extra objcopy --prefix-symbols= step |
| 1173 | Prefix_symbols string |
| 1174 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1175 | } |
| 1176 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1177 | func (c *CCBinary) buildStatic() bool { |
| 1178 | return c.BinaryProperties.Static_executable |
| 1179 | } |
| 1180 | |
| 1181 | func (c *CCBinary) buildShared() bool { |
| 1182 | return !c.BinaryProperties.Static_executable |
| 1183 | } |
| 1184 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1185 | func (c *CCBinary) getStem(ctx common.AndroidModuleContext) string { |
Colin Cross | 4ae185c | 2015-03-26 15:12:10 -0700 | [diff] [blame] | 1186 | stem := ctx.ModuleName() |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1187 | if c.BinaryProperties.Stem != "" { |
Colin Cross | 4ae185c | 2015-03-26 15:12:10 -0700 | [diff] [blame] | 1188 | stem = c.BinaryProperties.Stem |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1189 | } |
Colin Cross | 4ae185c | 2015-03-26 15:12:10 -0700 | [diff] [blame] | 1190 | |
| 1191 | return stem + c.BinaryProperties.Suffix |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1192 | } |
| 1193 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1194 | func (c *CCBinary) DepNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1195 | depNames = c.CCLinked.DepNames(ctx, depNames) |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1196 | if ctx.Device() { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1197 | if c.BinaryProperties.Static_executable { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1198 | depNames.CrtBegin = "crtbegin_static" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1199 | } else { |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1200 | depNames.CrtBegin = "crtbegin_dynamic" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1201 | } |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1202 | depNames.CrtEnd = "crtend_android" |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1203 | |
| 1204 | if c.BinaryProperties.Static_executable { |
| 1205 | // static libraries libcompiler_rt, libc and libc_nomalloc need to be linked with |
| 1206 | // --start-group/--end-group along with libgcc. If they are in deps.StaticLibs, |
| 1207 | // move them to the beginning of deps.LateStaticLibs |
| 1208 | var groupLibs []string |
| 1209 | depNames.StaticLibs, groupLibs = filterList(depNames.StaticLibs, |
| 1210 | []string{"libc", "libc_nomalloc", "libcompiler_rt"}) |
| 1211 | depNames.LateStaticLibs = append(groupLibs, depNames.LateStaticLibs...) |
| 1212 | } |
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 | return depNames |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1215 | } |
| 1216 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1217 | func NewCCBinary(binary *CCBinary, module CCModuleType, |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1218 | hod common.HostOrDeviceSupported, props ...interface{}) (blueprint.Module, []interface{}) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1219 | |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1220 | props = append(props, &binary.BinaryProperties) |
| 1221 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1222 | return newCCDynamic(&binary.CCLinked, module, hod, common.MultilibFirst, props...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1223 | } |
| 1224 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1225 | func CCBinaryFactory() (blueprint.Module, []interface{}) { |
| 1226 | module := &CCBinary{} |
| 1227 | |
| 1228 | return NewCCBinary(module, module, common.HostAndDeviceSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1229 | } |
| 1230 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1231 | func (c *CCBinary) Flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1232 | flags = c.CCLinked.Flags(ctx, flags) |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1233 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1234 | flags.CFlags = append(flags.CFlags, "-fpie") |
| 1235 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1236 | if ctx.Device() { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1237 | if c.BinaryProperties.Static_executable { |
| 1238 | // Clang driver needs -static to create static executable. |
| 1239 | // However, bionic/linker uses -shared to overwrite. |
| 1240 | // Linker for x86 targets does not allow coexistance of -static and -shared, |
| 1241 | // so we add -static only if -shared is not used. |
| 1242 | if !inList("-shared", flags.LdFlags) { |
| 1243 | flags.LdFlags = append(flags.LdFlags, "-static") |
| 1244 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1245 | |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1246 | flags.LdFlags = append(flags.LdFlags, |
| 1247 | "-nostdlib", |
| 1248 | "-Bstatic", |
| 1249 | "-Wl,--gc-sections", |
| 1250 | ) |
| 1251 | |
| 1252 | } else { |
| 1253 | linker := "/system/bin/linker" |
| 1254 | if flags.Toolchain.Is64Bit() { |
| 1255 | linker = "/system/bin/linker64" |
| 1256 | } |
| 1257 | |
| 1258 | flags.LdFlags = append(flags.LdFlags, |
| 1259 | "-nostdlib", |
| 1260 | "-Bdynamic", |
| 1261 | fmt.Sprintf("-Wl,-dynamic-linker,%s", linker), |
| 1262 | "-Wl,--gc-sections", |
| 1263 | "-Wl,-z,nocopyreloc", |
| 1264 | ) |
| 1265 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1266 | } |
| 1267 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1268 | return flags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1269 | } |
| 1270 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1271 | func (c *CCBinary) compileModule(ctx common.AndroidModuleContext, |
| 1272 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1273 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1274 | if !c.BinaryProperties.Static_executable && inList("libc", c.Properties.Static_libs) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1275 | ctx.ModuleErrorf("statically linking libc to dynamic executable, please remove libc\n" + |
| 1276 | "from static libs or set static_executable: true") |
| 1277 | } |
| 1278 | |
| 1279 | outputFile := filepath.Join(common.ModuleOutDir(ctx), c.getStem(ctx)) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1280 | c.out = outputFile |
Colin Cross | bfae885 | 2015-03-26 14:44:11 -0700 | [diff] [blame] | 1281 | if c.BinaryProperties.Prefix_symbols != "" { |
| 1282 | afterPrefixSymbols := outputFile |
| 1283 | outputFile = outputFile + ".intermediate" |
| 1284 | TransformBinaryPrefixSymbols(ctx, c.BinaryProperties.Prefix_symbols, outputFile, |
| 1285 | ccFlagsToBuilderFlags(flags), afterPrefixSymbols) |
| 1286 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1287 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1288 | TransformObjToDynamicBinary(ctx, objFiles, deps.SharedLibs, deps.StaticLibs, |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1289 | deps.LateStaticLibs, deps.WholeStaticLibs, deps.CrtBegin, deps.CrtEnd, true, |
Colin Cross | 77b00fa | 2015-03-16 16:15:49 -0700 | [diff] [blame] | 1290 | ccFlagsToBuilderFlags(flags), outputFile) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1291 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1292 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1293 | func (c *CCBinary) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1294 | ctx.InstallFile(filepath.Join("bin", c.Properties.Relative_install_path), c.out) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1295 | } |
| 1296 | |
| 1297 | type ccTest struct { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1298 | CCBinary |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1299 | |
| 1300 | testProperties struct { |
| 1301 | // test_per_src: Create a separate test for each source file. Useful when there is |
| 1302 | // global state that can not be torn down and reset between each test suite. |
| 1303 | Test_per_src bool |
| 1304 | } |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1305 | } |
| 1306 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1307 | func (c *ccTest) Flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags { |
| 1308 | flags = c.CCBinary.Flags(ctx, flags) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1309 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1310 | flags.CFlags = append(flags.CFlags, "-DGTEST_HAS_STD_STRING") |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1311 | if ctx.Host() { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1312 | flags.CFlags = append(flags.CFlags, "-O0", "-g") |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1313 | flags.LdFlags = append(flags.LdFlags, "-lpthread") |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1314 | } |
| 1315 | |
| 1316 | // TODO(danalbert): Make gtest export its dependencies. |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1317 | flags.CFlags = append(flags.CFlags, |
| 1318 | "-I"+filepath.Join(ctx.AConfig().SrcDir(), "external/gtest/include")) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1319 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1320 | return flags |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1321 | } |
| 1322 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1323 | func (c *ccTest) DepNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
| 1324 | depNames = c.CCBinary.DepNames(ctx, depNames) |
| 1325 | depNames.StaticLibs = append(depNames.StaticLibs, "libgtest", "libgtest_main") |
| 1326 | return depNames |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1327 | } |
| 1328 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1329 | func (c *ccTest) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1330 | if ctx.Device() { |
Tim Kilbourn | 5ccc730 | 2015-03-19 10:02:21 -0700 | [diff] [blame] | 1331 | ctx.InstallFile("../data/nativetest/"+ctx.ModuleName(), c.out) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1332 | } else { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1333 | c.CCBinary.installModule(ctx, flags) |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1334 | } |
| 1335 | } |
| 1336 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1337 | func CCTestFactory() (blueprint.Module, []interface{}) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1338 | module := &ccTest{} |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1339 | return NewCCBinary(&module.CCBinary, module, common.HostAndDeviceSupported, |
| 1340 | &module.testProperties) |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1341 | } |
| 1342 | |
| 1343 | func TestPerSrcMutator(mctx blueprint.EarlyMutatorContext) { |
| 1344 | if test, ok := mctx.Module().(*ccTest); ok { |
| 1345 | if test.testProperties.Test_per_src { |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1346 | testNames := make([]string, len(test.Properties.Srcs)) |
| 1347 | for i, src := range test.Properties.Srcs { |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1348 | testNames[i] = strings.TrimSuffix(src, filepath.Ext(src)) |
| 1349 | } |
| 1350 | tests := mctx.CreateLocalVariations(testNames...) |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1351 | for i, src := range test.Properties.Srcs { |
| 1352 | tests[i].(*ccTest).Properties.Srcs = []string{src} |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1353 | tests[i].(*ccTest).BinaryProperties.Stem = testNames[i] |
Colin Cross | 6b29069 | 2015-03-19 14:05:33 -0700 | [diff] [blame] | 1354 | } |
| 1355 | } |
| 1356 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1357 | } |
| 1358 | |
| 1359 | // |
| 1360 | // Static library |
| 1361 | // |
| 1362 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1363 | func CCLibraryStaticFactory() (blueprint.Module, []interface{}) { |
| 1364 | module := &CCLibrary{} |
| 1365 | module.LibraryProperties.BuildStatic = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1366 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1367 | return NewCCLibrary(module, module, common.HostAndDeviceSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1368 | } |
| 1369 | |
| 1370 | // |
| 1371 | // Shared libraries |
| 1372 | // |
| 1373 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1374 | func CCLibrarySharedFactory() (blueprint.Module, []interface{}) { |
| 1375 | module := &CCLibrary{} |
| 1376 | module.LibraryProperties.BuildShared = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1377 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1378 | return NewCCLibrary(module, module, common.HostAndDeviceSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1379 | } |
| 1380 | |
| 1381 | // |
| 1382 | // Host static library |
| 1383 | // |
| 1384 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1385 | func CCLibraryHostStaticFactory() (blueprint.Module, []interface{}) { |
| 1386 | module := &CCLibrary{} |
| 1387 | module.LibraryProperties.BuildStatic = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1388 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1389 | return NewCCLibrary(module, module, common.HostSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1390 | } |
| 1391 | |
| 1392 | // |
| 1393 | // Host Shared libraries |
| 1394 | // |
| 1395 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1396 | func CCLibraryHostSharedFactory() (blueprint.Module, []interface{}) { |
| 1397 | module := &CCLibrary{} |
| 1398 | module.LibraryProperties.BuildShared = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1399 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1400 | return NewCCLibrary(module, module, common.HostSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1401 | } |
| 1402 | |
| 1403 | // |
| 1404 | // Host Binaries |
| 1405 | // |
| 1406 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1407 | func CCBinaryHostFactory() (blueprint.Module, []interface{}) { |
| 1408 | module := &CCBinary{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1409 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1410 | return NewCCBinary(module, module, common.HostSupported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1411 | } |
| 1412 | |
| 1413 | // |
Colin Cross | 1f8f234 | 2015-03-26 16:09:47 -0700 | [diff] [blame] | 1414 | // Host Tests |
| 1415 | // |
| 1416 | |
| 1417 | func CCTestHostFactory() (blueprint.Module, []interface{}) { |
| 1418 | module := &ccTest{} |
| 1419 | return NewCCBinary(&module.CCBinary, module, common.HostSupported, |
| 1420 | &module.testProperties) |
| 1421 | } |
| 1422 | |
| 1423 | // |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1424 | // Device libraries shipped with gcc |
| 1425 | // |
| 1426 | |
| 1427 | type toolchainLibrary struct { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1428 | CCLibrary |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | func (*toolchainLibrary) AndroidDynamicDependencies(ctx common.AndroidDynamicDependerModuleContext) []string { |
| 1432 | // toolchain libraries can't have any dependencies |
| 1433 | return nil |
| 1434 | } |
| 1435 | |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1436 | func (*toolchainLibrary) DepNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1437 | // toolchain libraries can't have any dependencies |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1438 | return CCDeps{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1439 | } |
| 1440 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1441 | func ToolchainLibraryFactory() (blueprint.Module, []interface{}) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1442 | module := &toolchainLibrary{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1443 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1444 | module.LibraryProperties.BuildStatic = true |
| 1445 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1446 | return newCCBase(&module.CCBase, module, common.DeviceSupported, common.MultilibBoth, |
Colin Cross | 21b9a24 | 2015-03-24 14:15:58 -0700 | [diff] [blame] | 1447 | &module.LibraryProperties) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1448 | } |
| 1449 | |
| 1450 | func (c *toolchainLibrary) compileModule(ctx common.AndroidModuleContext, |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1451 | flags CCFlags, deps CCDeps, objFiles []string) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1452 | |
| 1453 | libName := ctx.ModuleName() + staticLibraryExtension |
| 1454 | outputFile := filepath.Join(common.ModuleOutDir(ctx), libName) |
| 1455 | |
| 1456 | CopyGccLib(ctx, libName, ccFlagsToBuilderFlags(flags), outputFile) |
| 1457 | |
| 1458 | c.out = outputFile |
| 1459 | |
| 1460 | ctx.CheckbuildFile(outputFile) |
| 1461 | } |
| 1462 | |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1463 | func (c *toolchainLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
Dan Albert | c403f7c | 2015-03-18 14:01:18 -0700 | [diff] [blame] | 1464 | // Toolchain libraries do not get installed. |
| 1465 | } |
| 1466 | |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1467 | // NDK prebuilt libraries. |
| 1468 | // |
| 1469 | // These differ from regular prebuilts in that they aren't stripped and usually aren't installed |
| 1470 | // either (with the exception of the shared STLs, which are installed to the app's directory rather |
| 1471 | // than to the system image). |
| 1472 | |
| 1473 | func getNdkLibDir(ctx common.AndroidModuleContext, toolchain Toolchain, version string) string { |
| 1474 | 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] | 1475 | ctx.AConfig().SrcDir(), version, toolchain.Name()) |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1476 | } |
| 1477 | |
| 1478 | type ndkPrebuiltLibrary struct { |
| 1479 | CCLibrary |
| 1480 | } |
| 1481 | |
| 1482 | func (*ndkPrebuiltLibrary) AndroidDynamicDependencies( |
| 1483 | ctx common.AndroidDynamicDependerModuleContext) []string { |
| 1484 | |
| 1485 | // NDK libraries can't have any dependencies |
| 1486 | return nil |
| 1487 | } |
| 1488 | |
| 1489 | func (*ndkPrebuiltLibrary) DepNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { |
| 1490 | // NDK libraries can't have any dependencies |
| 1491 | return CCDeps{} |
| 1492 | } |
| 1493 | |
| 1494 | func NdkPrebuiltLibraryFactory() (blueprint.Module, []interface{}) { |
| 1495 | module := &ndkPrebuiltLibrary{} |
| 1496 | module.LibraryProperties.BuildShared = true |
| 1497 | return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported) |
| 1498 | } |
| 1499 | |
| 1500 | func (c *ndkPrebuiltLibrary) compileModule(ctx common.AndroidModuleContext, flags CCFlags, |
| 1501 | deps CCDeps, objFiles []string) { |
| 1502 | // A null build step, but it sets up the output path. |
| 1503 | if !strings.HasPrefix(ctx.ModuleName(), "ndk_lib") { |
| 1504 | ctx.ModuleErrorf("NDK prebuilts must have an ndk_lib prefixed name") |
| 1505 | } |
| 1506 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1507 | includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1508 | c.exportFlags = []string{common.JoinWithPrefix(includeDirs, "-isystem ")} |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1509 | |
| 1510 | // NDK prebuilt libraries are named like: ndk_LIBNAME.SDK_VERSION. |
| 1511 | // We want to translate to just LIBNAME. |
| 1512 | libName := strings.Split(strings.TrimPrefix(ctx.ModuleName(), "ndk_"), ".")[0] |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1513 | libDir := getNdkLibDir(ctx, flags.Toolchain, c.Properties.Sdk_version) |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1514 | c.out = filepath.Join(libDir, libName+sharedLibraryExtension) |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1515 | } |
| 1516 | |
| 1517 | func (c *ndkPrebuiltLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) { |
| 1518 | // Toolchain libraries do not get installed. |
| 1519 | } |
| 1520 | |
| 1521 | // The NDK STLs are slightly different from the prebuilt system libraries: |
| 1522 | // * Are not specific to each platform version. |
| 1523 | // * The libraries are not in a predictable location for each STL. |
| 1524 | |
| 1525 | type ndkPrebuiltStl struct { |
| 1526 | ndkPrebuiltLibrary |
| 1527 | } |
| 1528 | |
| 1529 | type ndkPrebuiltStaticStl struct { |
| 1530 | ndkPrebuiltStl |
| 1531 | } |
| 1532 | |
| 1533 | type ndkPrebuiltSharedStl struct { |
| 1534 | ndkPrebuiltStl |
| 1535 | } |
| 1536 | |
| 1537 | func NdkPrebuiltSharedStlFactory() (blueprint.Module, []interface{}) { |
| 1538 | module := &ndkPrebuiltSharedStl{} |
| 1539 | module.LibraryProperties.BuildShared = true |
| 1540 | return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported) |
| 1541 | } |
| 1542 | |
| 1543 | func NdkPrebuiltStaticStlFactory() (blueprint.Module, []interface{}) { |
| 1544 | module := &ndkPrebuiltStaticStl{} |
| 1545 | module.LibraryProperties.BuildStatic = true |
| 1546 | return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported) |
| 1547 | } |
| 1548 | |
| 1549 | func getNdkStlLibDir(ctx common.AndroidModuleContext, toolchain Toolchain, stl string) string { |
| 1550 | gccVersion := toolchain.GccVersion() |
| 1551 | var libDir string |
| 1552 | switch stl { |
| 1553 | case "libstlport": |
| 1554 | libDir = "cxx-stl/stlport/libs" |
| 1555 | case "libc++": |
| 1556 | libDir = "cxx-stl/llvm-libc++/libs" |
| 1557 | case "libgnustl": |
| 1558 | libDir = fmt.Sprintf("cxx-stl/gnu-libstdc++/%s/libs", gccVersion) |
| 1559 | } |
| 1560 | |
| 1561 | if libDir != "" { |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 1562 | ndkSrcRoot := ctx.AConfig().SrcDir() + "/prebuilts/ndk/current/sources" |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1563 | return fmt.Sprintf("%s/%s/%s", ndkSrcRoot, libDir, ctx.Arch().Abi) |
| 1564 | } |
| 1565 | |
| 1566 | ctx.ModuleErrorf("Unknown NDK STL: %s", stl) |
| 1567 | return "" |
| 1568 | } |
| 1569 | |
| 1570 | func (c *ndkPrebuiltStl) compileModule(ctx common.AndroidModuleContext, flags CCFlags, |
| 1571 | deps CCDeps, objFiles []string) { |
| 1572 | // A null build step, but it sets up the output path. |
| 1573 | if !strings.HasPrefix(ctx.ModuleName(), "ndk_lib") { |
| 1574 | ctx.ModuleErrorf("NDK prebuilts must have an ndk_lib prefixed name") |
| 1575 | } |
| 1576 | |
Colin Cross | fa13879 | 2015-04-24 17:31:52 -0700 | [diff] [blame^] | 1577 | includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx)) |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 1578 | c.exportFlags = []string{includeDirsToFlags(includeDirs)} |
Dan Albert | be96168 | 2015-03-18 23:38:50 -0700 | [diff] [blame] | 1579 | |
| 1580 | libName := strings.TrimPrefix(ctx.ModuleName(), "ndk_") |
| 1581 | libExt := sharedLibraryExtension |
| 1582 | if c.LibraryProperties.BuildStatic { |
| 1583 | libExt = staticLibraryExtension |
| 1584 | } |
| 1585 | |
| 1586 | stlName := strings.TrimSuffix(libName, "_shared") |
| 1587 | stlName = strings.TrimSuffix(stlName, "_static") |
| 1588 | libDir := getNdkStlLibDir(ctx, flags.Toolchain, stlName) |
| 1589 | c.out = libDir + "/" + libName + libExt |
| 1590 | } |
| 1591 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1592 | func LinkageMutator(mctx blueprint.EarlyMutatorContext) { |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1593 | if c, ok := mctx.Module().(ccLinkedInterface); ok { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1594 | var modules []blueprint.Module |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1595 | if c.buildStatic() && c.buildShared() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1596 | modules = mctx.CreateLocalVariations("static", "shared") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1597 | modules[0].(ccLinkedInterface).setStatic() |
| 1598 | modules[1].(ccLinkedInterface).setShared() |
| 1599 | } else if c.buildStatic() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1600 | modules = mctx.CreateLocalVariations("static") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1601 | modules[0].(ccLinkedInterface).setStatic() |
| 1602 | } else if c.buildShared() { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1603 | modules = mctx.CreateLocalVariations("shared") |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1604 | modules[0].(ccLinkedInterface).setShared() |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1605 | } else { |
Colin Cross | 97ba073 | 2015-03-23 17:50:24 -0700 | [diff] [blame] | 1606 | panic(fmt.Errorf("ccLibrary %q not static or shared", mctx.ModuleName())) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1607 | } |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 1608 | |
| 1609 | if _, ok := c.(ccLibraryInterface); ok { |
| 1610 | reuseFrom := modules[0].(ccLibraryInterface) |
| 1611 | for _, m := range modules { |
| 1612 | m.(ccLibraryInterface).setReuseFrom(reuseFrom) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1613 | } |
| 1614 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1615 | } |
| 1616 | } |