blob: f6391fbe81db3b4af4212cf6da0a84f65327d936 [file] [log] [blame]
Colin Cross5049f022015-03-18 13:28:46 -07001// Copyright 2015 Google Inc. All rights reserved.
Colin Cross3f40fa42015-01-30 17:27:36 -08002//
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
15package 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
21import (
Colin Cross3f40fa42015-01-30 17:27:36 -080022 "fmt"
23 "path/filepath"
24 "strings"
25
Colin Cross97ba0732015-03-23 17:50:24 -070026 "github.com/google/blueprint"
27 "github.com/google/blueprint/pathtools"
28
Colin Cross3f40fa42015-01-30 17:27:36 -080029 "android/soong/common"
Colin Cross5049f022015-03-18 13:28:46 -070030 "android/soong/genrule"
Colin Cross3f40fa42015-01-30 17:27:36 -080031)
32
Colin Cross3f40fa42015-01-30 17:27:36 -080033var (
Colin Cross1332b002015-04-07 17:11:30 -070034 HostPrebuiltTag = pctx.VariableConfigMethod("HostPrebuiltTag", common.Config.PrebuiltOS)
35 SrcDir = pctx.VariableConfigMethod("SrcDir", common.Config.SrcDir)
Colin Cross3f40fa42015-01-30 17:27:36 -080036
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
43var (
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
74func 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 Kilbournf2948142015-03-11 12:03:03 -070087 pctx.StaticVariable("commonClangGlobalCppflags",
88 strings.Join(clangFilterUnknownCflags(commonGlobalCppflags), " "))
Colin Cross3f40fa42015-01-30 17:27:36 -080089
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 Cross3f40fa42015-01-30 17:27:36 -0800107// Building C/C++ code is handled by objects that satisfy this interface via composition
Colin Cross97ba0732015-03-23 17:50:24 -0700108type CCModuleType interface {
Colin Cross3f40fa42015-01-30 17:27:36 -0800109 common.AndroidModule
110
Colin Crossfa138792015-04-24 17:31:52 -0700111 // Modify property values after parsing Blueprints file but before starting dependency
112 // resolution or build rule generation
113 ModifyProperties(common.AndroidBaseContext)
114
Colin Cross21b9a242015-03-24 14:15:58 -0700115 // Modify the ccFlags
Colin Cross0676e2d2015-04-24 17:39:18 -0700116 flags(common.AndroidModuleContext, CCFlags) CCFlags
Colin Cross3f40fa42015-01-30 17:27:36 -0800117
Colin Cross21b9a242015-03-24 14:15:58 -0700118 // Return list of dependency names for use in AndroidDynamicDependencies and in depsToPaths
Colin Cross0676e2d2015-04-24 17:39:18 -0700119 depNames(common.AndroidBaseContext, CCDeps) CCDeps
Colin Cross3f40fa42015-01-30 17:27:36 -0800120
121 // Compile objects into final module
Colin Cross97ba0732015-03-23 17:50:24 -0700122 compileModule(common.AndroidModuleContext, CCFlags, CCDeps, []string)
Colin Cross3f40fa42015-01-30 17:27:36 -0800123
Dan Albertc403f7c2015-03-18 14:01:18 -0700124 // Install the built module.
Colin Cross97ba0732015-03-23 17:50:24 -0700125 installModule(common.AndroidModuleContext, CCFlags)
Dan Albertc403f7c2015-03-18 14:01:18 -0700126
Colin Cross3f40fa42015-01-30 17:27:36 -0800127 // Return the output file (.o, .a or .so) for use by other modules
128 outputFile() string
129}
130
Colin Cross97ba0732015-03-23 17:50:24 -0700131type CCDeps struct {
Colin Cross28344522015-04-22 13:07:53 -0700132 StaticLibs, SharedLibs, LateStaticLibs, WholeStaticLibs, ObjFiles, Cflags []string
Colin Crossc472d572015-03-17 15:06:21 -0700133
Colin Cross21b9a242015-03-24 14:15:58 -0700134 WholeStaticLibObjFiles []string
135
Colin Cross97ba0732015-03-23 17:50:24 -0700136 CrtBegin, CrtEnd string
Colin Crossc472d572015-03-17 15:06:21 -0700137}
138
Colin Cross97ba0732015-03-23 17:50:24 -0700139type CCFlags struct {
Colin Cross28344522015-04-22 13:07:53 -0700140 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 Crossc472d572015-03-17 15:06:21 -0700151}
152
Colin Crossfa138792015-04-24 17:31:52 -0700153// CCBase contains the properties and members used by all C/C++ module types, and implements
Colin Crossc472d572015-03-17 15:06:21 -0700154// 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 Crossfa138792015-04-24 17:31:52 -0700156type CCBase struct {
Colin Crossc472d572015-03-17 15:06:21 -0700157 common.AndroidModuleBase
Colin Cross97ba0732015-03-23 17:50:24 -0700158 module CCModuleType
Colin Crossc472d572015-03-17 15:06:21 -0700159
Colin Crossfa138792015-04-24 17:31:52 -0700160 // 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 Crossc472d572015-03-17 15:06:21 -0700279
280 installPath string
281}
282
Colin Crossfa138792015-04-24 17:31:52 -0700283func newCCBase(base *CCBase, module CCModuleType, hod common.HostOrDeviceSupported,
Colin Crossc472d572015-03-17 15:06:21 -0700284 multilib common.Multilib, props ...interface{}) (blueprint.Module, []interface{}) {
285
286 base.module = module
287
Colin Crossfa138792015-04-24 17:31:52 -0700288 props = append(props, &base.Properties, &base.unused)
Colin Crossc472d572015-03-17 15:06:21 -0700289
Colin Cross5049f022015-03-18 13:28:46 -0700290 return common.InitAndroidArchModule(module, hod, multilib, props...)
Colin Crossc472d572015-03-17 15:06:21 -0700291}
292
Colin Crossfa138792015-04-24 17:31:52 -0700293func (c *CCBase) GenerateAndroidBuildActions(ctx common.AndroidModuleContext) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800294 toolchain := c.findToolchain(ctx)
295 if ctx.Failed() {
296 return
297 }
298
Colin Cross21b9a242015-03-24 14:15:58 -0700299 flags := c.collectFlags(ctx, toolchain)
Colin Cross3f40fa42015-01-30 17:27:36 -0800300 if ctx.Failed() {
301 return
302 }
303
Colin Cross0676e2d2015-04-24 17:39:18 -0700304 depNames := c.module.depNames(ctx, CCDeps{})
Colin Cross3f40fa42015-01-30 17:27:36 -0800305 if ctx.Failed() {
306 return
307 }
308
Colin Cross21b9a242015-03-24 14:15:58 -0700309 deps := c.depsToPaths(ctx, depNames)
Colin Cross3f40fa42015-01-30 17:27:36 -0800310 if ctx.Failed() {
311 return
312 }
313
Colin Cross28344522015-04-22 13:07:53 -0700314 flags.CFlags = append(flags.CFlags, deps.Cflags...)
Colin Crossed9f8682015-03-18 17:17:35 -0700315
Colin Cross581c1892015-04-07 16:50:10 -0700316 objFiles := c.compileObjs(ctx, flags)
Colin Cross3f40fa42015-01-30 17:27:36 -0800317 if ctx.Failed() {
318 return
319 }
320
Colin Cross581c1892015-04-07 16:50:10 -0700321 generatedObjFiles := c.compileGeneratedObjs(ctx, flags)
Colin Cross5049f022015-03-18 13:28:46 -0700322 if ctx.Failed() {
323 return
324 }
325
326 objFiles = append(objFiles, generatedObjFiles...)
327
Colin Cross3f40fa42015-01-30 17:27:36 -0800328 c.ccModuleType().compileModule(ctx, flags, deps, objFiles)
329 if ctx.Failed() {
330 return
331 }
Dan Albertc403f7c2015-03-18 14:01:18 -0700332
333 c.ccModuleType().installModule(ctx, flags)
334 if ctx.Failed() {
335 return
336 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800337}
338
Colin Crossfa138792015-04-24 17:31:52 -0700339func (c *CCBase) ccModuleType() CCModuleType {
Colin Cross3f40fa42015-01-30 17:27:36 -0800340 return c.module
341}
342
Colin Crossfa138792015-04-24 17:31:52 -0700343var _ common.AndroidDynamicDepender = (*CCBase)(nil)
Colin Cross3f40fa42015-01-30 17:27:36 -0800344
Colin Crossfa138792015-04-24 17:31:52 -0700345func (c *CCBase) findToolchain(ctx common.AndroidModuleContext) Toolchain {
Colin Cross3f40fa42015-01-30 17:27:36 -0800346 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 Crossfa138792015-04-24 17:31:52 -0700355func (c *CCBase) ModifyProperties(ctx common.AndroidBaseContext) {
356}
357
Colin Crosse11befc2015-04-27 17:49:17 -0700358func (c *CCBase) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps {
Colin Crossfa138792015-04-24 17:31:52 -0700359 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 Cross21b9a242015-03-24 14:15:58 -0700362
Colin Cross21b9a242015-03-24 14:15:58 -0700363 return depNames
Colin Cross3f40fa42015-01-30 17:27:36 -0800364}
365
Colin Crossfa138792015-04-24 17:31:52 -0700366func (c *CCBase) AndroidDynamicDependencies(ctx common.AndroidDynamicDependerModuleContext) []string {
367 c.module.ModifyProperties(ctx)
368
Colin Cross21b9a242015-03-24 14:15:58 -0700369 depNames := CCDeps{}
Colin Cross0676e2d2015-04-24 17:39:18 -0700370 depNames = c.module.depNames(ctx, depNames)
Colin Cross21b9a242015-03-24 14:15:58 -0700371 staticLibs := depNames.WholeStaticLibs
372 staticLibs = append(staticLibs, depNames.StaticLibs...)
373 staticLibs = append(staticLibs, depNames.LateStaticLibs...)
374 ctx.AddVariationDependencies([]blueprint.Variation{{"link", "static"}}, staticLibs...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800375
Colin Cross21b9a242015-03-24 14:15:58 -0700376 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 Cross3f40fa42015-01-30 17:27:36 -0800387}
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 Crossfa138792015-04-24 17:31:52 -0700391func (c *CCBase) collectFlags(ctx common.AndroidModuleContext, toolchain Toolchain) CCFlags {
Colin Cross97ba0732015-03-23 17:50:24 -0700392 flags := CCFlags{
Colin Crossfa138792015-04-24 17:31:52 -0700393 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 Cross97ba0732015-03-23 17:50:24 -0700400 Toolchain: toolchain,
Colin Crossfa138792015-04-24 17:31:52 -0700401 Clang: c.Properties.Clang,
Colin Cross3f40fa42015-01-30 17:27:36 -0800402 }
Colin Cross28344522015-04-22 13:07:53 -0700403
404 // Include dir cflags
Colin Crossfa138792015-04-24 17:31:52 -0700405 rootIncludeDirs := pathtools.PrefixPaths(c.Properties.Include_dirs, ctx.AConfig().SrcDir())
406 localIncludeDirs := pathtools.PrefixPaths(c.Properties.Local_include_dirs, common.ModuleSrcDir(ctx))
Colin Cross28344522015-04-22 13:07:53 -0700407 flags.GlobalFlags = append(flags.GlobalFlags,
408 includeDirsToFlags(rootIncludeDirs),
409 includeDirsToFlags(localIncludeDirs))
410
Colin Crossfa138792015-04-24 17:31:52 -0700411 if !c.Properties.No_default_compiler_flags {
412 if c.Properties.Sdk_version == "" || ctx.Host() {
Colin Cross28344522015-04-22 13:07:53 -0700413 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 Crossfa138792015-04-24 17:31:52 -0700426 instructionSet := c.Properties.Instruction_set
Tim Kilbourn1a9bf262015-03-18 12:28:32 -0700427 instructionSetFlags, err := toolchain.InstructionSetFlags(instructionSet)
428 if err != nil {
429 ctx.ModuleErrorf("%s", err)
430 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800431
Colin Crossaf19a292015-03-18 12:07:10 -0700432 // TODO: debug
Colin Crossfa138792015-04-24 17:31:52 -0700433 flags.CFlags = append(flags.CFlags, c.Properties.Release.Cflags...)
Colin Crossaf19a292015-03-18 12:07:10 -0700434
Colin Cross28d76592015-03-26 16:14:04 -0700435 if ctx.Host() && !ctx.ContainsProperty("clang") {
Colin Cross97ba0732015-03-23 17:50:24 -0700436 flags.Clang = true
Colin Cross3f40fa42015-01-30 17:27:36 -0800437 }
438
Colin Cross97ba0732015-03-23 17:50:24 -0700439 if flags.Clang {
440 flags.CFlags = clangFilterUnknownCflags(flags.CFlags)
Colin Crossfa138792015-04-24 17:31:52 -0700441 flags.CFlags = append(flags.CFlags, c.Properties.Clang_cflags...)
442 flags.AsFlags = append(flags.AsFlags, c.Properties.Clang_asflags...)
Colin Cross97ba0732015-03-23 17:50:24 -0700443 flags.CppFlags = clangFilterUnknownCflags(flags.CppFlags)
444 flags.ConlyFlags = clangFilterUnknownCflags(flags.ConlyFlags)
445 flags.LdFlags = clangFilterUnknownCflags(flags.LdFlags)
Colin Cross3f40fa42015-01-30 17:27:36 -0800446
Colin Cross97ba0732015-03-23 17:50:24 -0700447 flags.CFlags = append(flags.CFlags, "${clangExtraCflags}")
448 flags.ConlyFlags = append(flags.ConlyFlags, "${clangExtraConlyflags}")
Colin Crossf6566ed2015-03-24 11:13:38 -0700449 if ctx.Device() {
Colin Cross97ba0732015-03-23 17:50:24 -0700450 flags.CFlags = append(flags.CFlags, "${clangExtraTargetCflags}")
Colin Crossbdd7b1c2015-03-16 16:21:20 -0700451 }
452
Colin Cross3f40fa42015-01-30 17:27:36 -0800453 target := "-target " + toolchain.ClangTriple()
454 gccPrefix := "-B" + filepath.Join(toolchain.GccRoot(), toolchain.GccTriple(), "bin")
455
Colin Cross97ba0732015-03-23 17:50:24 -0700456 flags.CFlags = append(flags.CFlags, target, gccPrefix)
457 flags.AsFlags = append(flags.AsFlags, target, gccPrefix)
458 flags.LdFlags = append(flags.LdFlags, target, gccPrefix)
Colin Cross3f40fa42015-01-30 17:27:36 -0800459
Colin Crossf6566ed2015-03-24 11:13:38 -0700460 if ctx.Host() {
Colin Cross3f40fa42015-01-30 17:27:36 -0800461 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 Cross97ba0732015-03-23 17:50:24 -0700465 flags.CFlags = append(flags.CFlags, gccToolchain, sysroot)
466 flags.AsFlags = append(flags.AsFlags, gccToolchain, sysroot)
467 flags.LdFlags = append(flags.LdFlags, gccToolchain, sysroot)
Colin Cross3f40fa42015-01-30 17:27:36 -0800468 }
469 }
470
Colin Crossfa138792015-04-24 17:31:52 -0700471 if !c.Properties.No_default_compiler_flags {
472 if ctx.Device() && !c.Properties.Allow_undefined_symbols {
Colin Cross97ba0732015-03-23 17:50:24 -0700473 flags.LdFlags = append(flags.LdFlags, "-Wl,--no-undefined")
Colin Cross3f40fa42015-01-30 17:27:36 -0800474 }
475
Colin Cross56b4d452015-04-21 17:38:44 -0700476 flags.GlobalFlags = append(flags.GlobalFlags, instructionSetFlags)
477
Colin Cross97ba0732015-03-23 17:50:24 -0700478 if flags.Clang {
479 flags.CppFlags = append(flags.CppFlags, "${commonClangGlobalCppflags}")
Colin Cross56b4d452015-04-21 17:38:44 -0700480 flags.GlobalFlags = append(flags.GlobalFlags,
Colin Cross3f40fa42015-01-30 17:27:36 -0800481 toolchain.ClangCflags(),
482 "${commonClangGlobalCflags}",
Colin Cross56b4d452015-04-21 17:38:44 -0700483 fmt.Sprintf("${%sClangGlobalCflags}", ctx.Arch().HostOrDevice))
Colin Cross3f40fa42015-01-30 17:27:36 -0800484 } else {
Colin Cross97ba0732015-03-23 17:50:24 -0700485 flags.CppFlags = append(flags.CppFlags, "${commonGlobalCppflags}")
Colin Cross56b4d452015-04-21 17:38:44 -0700486 flags.GlobalFlags = append(flags.GlobalFlags,
Colin Cross3f40fa42015-01-30 17:27:36 -0800487 toolchain.Cflags(),
488 "${commonGlobalCflags}",
Colin Cross56b4d452015-04-21 17:38:44 -0700489 fmt.Sprintf("${%sGlobalCflags}", ctx.Arch().HostOrDevice))
Colin Cross3f40fa42015-01-30 17:27:36 -0800490 }
491
Colin Crossf6566ed2015-03-24 11:13:38 -0700492 if ctx.Device() {
Colin Crossfa138792015-04-24 17:31:52 -0700493 if c.Properties.Rtti {
Colin Cross97ba0732015-03-23 17:50:24 -0700494 flags.CppFlags = append(flags.CppFlags, "-frtti")
Colin Cross3f40fa42015-01-30 17:27:36 -0800495 } else {
Colin Cross97ba0732015-03-23 17:50:24 -0700496 flags.CppFlags = append(flags.CppFlags, "-fno-rtti")
Colin Cross3f40fa42015-01-30 17:27:36 -0800497 }
498 }
499
Colin Cross97ba0732015-03-23 17:50:24 -0700500 flags.AsFlags = append(flags.AsFlags, "-D__ASSEMBLY__")
Colin Cross3f40fa42015-01-30 17:27:36 -0800501
Colin Cross97ba0732015-03-23 17:50:24 -0700502 if flags.Clang {
503 flags.CppFlags = append(flags.CppFlags, toolchain.ClangCppflags())
504 flags.LdFlags = append(flags.LdFlags, toolchain.ClangLdflags())
Colin Cross3f40fa42015-01-30 17:27:36 -0800505 } else {
Colin Cross97ba0732015-03-23 17:50:24 -0700506 flags.CppFlags = append(flags.CppFlags, toolchain.Cppflags())
507 flags.LdFlags = append(flags.LdFlags, toolchain.Ldflags())
Colin Cross3f40fa42015-01-30 17:27:36 -0800508 }
Colin Cross28344522015-04-22 13:07:53 -0700509
510 if ctx.Host() {
Colin Crossfa138792015-04-24 17:31:52 -0700511 flags.LdFlags = append(flags.LdFlags, c.Properties.Host_ldlibs...)
Colin Cross28344522015-04-22 13:07:53 -0700512 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800513 }
514
Colin Cross0676e2d2015-04-24 17:39:18 -0700515 flags = c.ccModuleType().flags(ctx, flags)
Colin Cross3f40fa42015-01-30 17:27:36 -0800516
517 // Optimization to reduce size of build.ninja
518 // Replace the long list of flags for each file with a module-local variable
Colin Cross97ba0732015-03-23 17:50:24 -0700519 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 Cross3f40fa42015-01-30 17:27:36 -0800525
526 return flags
527}
528
Colin Cross0676e2d2015-04-24 17:39:18 -0700529func (c *CCBase) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags {
Colin Cross3f40fa42015-01-30 17:27:36 -0800530 return flags
531}
532
533// Compile a list of source files into objects a specified subdirectory
Colin Crossfa138792015-04-24 17:31:52 -0700534func (c *CCBase) customCompileObjs(ctx common.AndroidModuleContext, flags CCFlags,
Colin Cross581c1892015-04-07 16:50:10 -0700535 subdir string, srcFiles []string) []string {
536
537 buildFlags := ccFlagsToBuilderFlags(flags)
Colin Cross3f40fa42015-01-30 17:27:36 -0800538
Colin Crossfce53272015-04-08 11:21:40 -0700539 srcFiles = common.ExpandSources(ctx, srcFiles)
Colin Cross581c1892015-04-07 16:50:10 -0700540 srcFiles, deps := genSources(ctx, srcFiles, buildFlags)
Colin Cross3f40fa42015-01-30 17:27:36 -0800541
Colin Cross581c1892015-04-07 16:50:10 -0700542 return TransformSourceToObj(ctx, subdir, srcFiles, buildFlags, deps)
Colin Cross3f40fa42015-01-30 17:27:36 -0800543}
544
Colin Crossfa138792015-04-24 17:31:52 -0700545// Compile files listed in c.Properties.Srcs into objects
546func (c *CCBase) compileObjs(ctx common.AndroidModuleContext, flags CCFlags) []string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800547
Colin Crossfa138792015-04-24 17:31:52 -0700548 if c.Properties.SkipCompileObjs {
Colin Cross3f40fa42015-01-30 17:27:36 -0800549 return nil
550 }
551
Colin Crossfa138792015-04-24 17:31:52 -0700552 return c.customCompileObjs(ctx, flags, "", c.Properties.Srcs)
Colin Cross3f40fa42015-01-30 17:27:36 -0800553}
554
Colin Cross5049f022015-03-18 13:28:46 -0700555// Compile generated source files from dependencies
Colin Crossfa138792015-04-24 17:31:52 -0700556func (c *CCBase) compileGeneratedObjs(ctx common.AndroidModuleContext, flags CCFlags) []string {
Colin Cross5049f022015-03-18 13:28:46 -0700557 var srcs []string
558
Colin Crossfa138792015-04-24 17:31:52 -0700559 if c.Properties.SkipCompileObjs {
Colin Cross5049f022015-03-18 13:28:46 -0700560 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 Cross581c1892015-04-07 16:50:10 -0700573 return TransformSourceToObj(ctx, "", srcs, ccFlagsToBuilderFlags(flags), nil)
Colin Cross5049f022015-03-18 13:28:46 -0700574}
575
Colin Crossfa138792015-04-24 17:31:52 -0700576func (c *CCBase) outputFile() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800577 return ""
578}
579
Colin Crossfa138792015-04-24 17:31:52 -0700580func (c *CCBase) depsToPathsFromList(ctx common.AndroidModuleContext,
Colin Cross3f40fa42015-01-30 17:27:36 -0800581 names []string) (modules []common.AndroidModule,
Colin Cross28344522015-04-22 13:07:53 -0700582 outputFiles []string, exportedFlags []string) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800583
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 Cross97ba0732015-03-23 17:50:24 -0700592 if a, ok := m.(CCModuleType); ok {
Colin Cross3f40fa42015-01-30 17:27:36 -0800593 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 Cross28344522015-04-22 13:07:53 -0700613 if i, ok := a.(ccExportedFlagsProducer); ok {
614 exportedFlags = append(exportedFlags, i.exportedFlags()...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800615 }
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 Cross28344522015-04-22 13:07:53 -0700631 return modules, outputFiles, exportedFlags
Colin Cross3f40fa42015-01-30 17:27:36 -0800632}
633
Colin Cross21b9a242015-03-24 14:15:58 -0700634// Convert depenedency names to paths. Takes a CCDeps containing names and returns a CCDeps
635// containing paths
Colin Crossfa138792015-04-24 17:31:52 -0700636func (c *CCBase) depsToPaths(ctx common.AndroidModuleContext, depNames CCDeps) CCDeps {
Colin Cross21b9a242015-03-24 14:15:58 -0700637 var depPaths CCDeps
Colin Cross28344522015-04-22 13:07:53 -0700638 var newCflags []string
Colin Cross3f40fa42015-01-30 17:27:36 -0800639
Colin Cross21b9a242015-03-24 14:15:58 -0700640 var wholeStaticLibModules []common.AndroidModule
Colin Cross3f40fa42015-01-30 17:27:36 -0800641
Colin Cross28344522015-04-22 13:07:53 -0700642 wholeStaticLibModules, depPaths.WholeStaticLibs, newCflags =
Colin Cross21b9a242015-03-24 14:15:58 -0700643 c.depsToPathsFromList(ctx, depNames.WholeStaticLibs)
Colin Cross28344522015-04-22 13:07:53 -0700644 depPaths.Cflags = append(depPaths.Cflags, newCflags...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800645
Colin Cross21b9a242015-03-24 14:15:58 -0700646 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 Cross3f40fa42015-01-30 17:27:36 -0800654
Colin Cross28344522015-04-22 13:07:53 -0700655 _, depPaths.StaticLibs, newCflags = c.depsToPathsFromList(ctx, depNames.StaticLibs)
656 depPaths.Cflags = append(depPaths.Cflags, newCflags...)
Colin Cross21b9a242015-03-24 14:15:58 -0700657
Colin Cross28344522015-04-22 13:07:53 -0700658 _, depPaths.LateStaticLibs, newCflags = c.depsToPathsFromList(ctx, depNames.LateStaticLibs)
659 depPaths.Cflags = append(depPaths.Cflags, newCflags...)
Colin Cross21b9a242015-03-24 14:15:58 -0700660
Colin Cross28344522015-04-22 13:07:53 -0700661 _, depPaths.SharedLibs, newCflags = c.depsToPathsFromList(ctx, depNames.SharedLibs)
662 depPaths.Cflags = append(depPaths.Cflags, newCflags...)
Colin Cross21b9a242015-03-24 14:15:58 -0700663
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 Crossfa138792015-04-24 17:31:52 -0700668 if !c.Properties.Nocrt {
Colin Cross21b9a242015-03-24 14:15:58 -0700669 depPaths.CrtBegin = obj.outputFile()
670 }
671 } else if otherName == depNames.CrtEnd {
Colin Crossfa138792015-04-24 17:31:52 -0700672 if !c.Properties.Nocrt {
Colin Cross21b9a242015-03-24 14:15:58 -0700673 depPaths.CrtEnd = obj.outputFile()
674 }
675 } else {
676 depPaths.ObjFiles = append(depPaths.ObjFiles, obj.outputFile())
677 }
678 }
679 })
680
681 return depPaths
Colin Cross3f40fa42015-01-30 17:27:36 -0800682}
683
Colin Crossfa138792015-04-24 17:31:52 -0700684// CCLinked contains the properties and members used by libraries and executables
685type CCLinked struct {
686 CCBase
Colin Crossed4cf0b2015-03-26 14:43:45 -0700687
688 dynamicProperties struct {
689 VariantIsShared bool `blueprint:"mutated"`
690 VariantIsStatic bool `blueprint:"mutated"`
691 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800692}
693
Colin Crossfa138792015-04-24 17:31:52 -0700694func newCCDynamic(dynamic *CCLinked, module CCModuleType, hod common.HostOrDeviceSupported,
Colin Crossc472d572015-03-17 15:06:21 -0700695 multilib common.Multilib, props ...interface{}) (blueprint.Module, []interface{}) {
696
Colin Crossed4cf0b2015-03-26 14:43:45 -0700697 props = append(props, &dynamic.dynamicProperties)
698
Colin Crossfa138792015-04-24 17:31:52 -0700699 return newCCBase(&dynamic.CCBase, module, hod, multilib, props...)
Colin Crossc472d572015-03-17 15:06:21 -0700700}
701
Colin Crossfa138792015-04-24 17:31:52 -0700702func (c *CCLinked) systemSharedLibs(ctx common.AndroidBaseContext) []string {
Colin Cross28d76592015-03-26 16:14:04 -0700703 if ctx.ContainsProperty("system_shared_libs") {
Colin Crossfa138792015-04-24 17:31:52 -0700704 return c.Properties.System_shared_libs
705 } else if ctx.Device() && c.Properties.Sdk_version == "" {
Colin Cross577f6e42015-03-27 18:23:34 -0700706 return []string{"libc", "libm"}
Colin Cross28d76592015-03-26 16:14:04 -0700707 } else {
Colin Cross577f6e42015-03-27 18:23:34 -0700708 return nil
Colin Cross3f40fa42015-01-30 17:27:36 -0800709 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800710}
711
Colin Crossfa138792015-04-24 17:31:52 -0700712func (c *CCLinked) stl(ctx common.AndroidBaseContext) string {
713 if c.Properties.Sdk_version != "" && ctx.Device() {
714 switch c.Properties.Stl {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700715 case "":
716 return "ndk_system"
717 case "c++_shared", "c++_static",
718 "stlport_shared", "stlport_static",
719 "gnustl_static":
Colin Crossfa138792015-04-24 17:31:52 -0700720 return "ndk_lib" + c.Properties.Stl
Colin Crossed4cf0b2015-03-26 14:43:45 -0700721 default:
Colin Crossfa138792015-04-24 17:31:52 -0700722 ctx.ModuleErrorf("stl: %q is not a supported STL with sdk_version set", c.Properties.Stl)
Colin Crossed4cf0b2015-03-26 14:43:45 -0700723 return ""
724 }
725 }
726
Colin Crossfa138792015-04-24 17:31:52 -0700727 switch c.Properties.Stl {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700728 case "libc++", "libc++_static",
729 "stlport", "stlport_static",
730 "libstdc++":
Colin Crossfa138792015-04-24 17:31:52 -0700731 return c.Properties.Stl
Colin Crossed4cf0b2015-03-26 14:43:45 -0700732 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 Crossfa138792015-04-24 17:31:52 -0700741 ctx.ModuleErrorf("stl: %q is not a supported STL", c.Properties.Stl)
Colin Crossed4cf0b2015-03-26 14:43:45 -0700742 return ""
743 }
744}
745
Colin Cross712fc022015-04-27 11:13:34 -0700746var (
747 hostDynamicGccLibs = []string{"-lgcc_s", "-lgcc", "-lc", "-lgcc_s", "-lgcc"}
748 hostStaticGccLibs = []string{"-Wl,--start-group", "-lgcc", "-lgcc_eh", "-lc", "-Wl,--end-group"}
749)
750
Colin Crosse11befc2015-04-27 17:49:17 -0700751func (c *CCLinked) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700752 stl := c.stl(ctx)
753 if ctx.Failed() {
754 return flags
755 }
756
757 switch stl {
758 case "libc++", "libc++_static":
759 flags.CFlags = append(flags.CFlags, "-D_USING_LIBCXX")
Colin Cross28344522015-04-22 13:07:53 -0700760 flags.CFlags = append(flags.CFlags, "-I${SrcDir}/external/libcxx/include")
Colin Crossed4cf0b2015-03-26 14:43:45 -0700761 if ctx.Host() {
762 flags.CppFlags = append(flags.CppFlags, "-nostdinc++")
763 flags.LdFlags = append(flags.LdFlags, "-nodefaultlibs")
Colin Cross712fc022015-04-27 11:13:34 -0700764 flags.LdFlags = append(flags.LdFlags, "-lm", "-lpthread")
765 if c.shared() {
766 flags.LdFlags = append(flags.LdFlags, hostDynamicGccLibs...)
767 } else {
768 flags.LdFlags = append(flags.LdFlags, hostStaticGccLibs...)
769 }
Colin Crossed4cf0b2015-03-26 14:43:45 -0700770 }
771 case "stlport", "stlport_static":
772 if ctx.Device() {
Colin Cross28344522015-04-22 13:07:53 -0700773 flags.CFlags = append(flags.CFlags,
774 "-I${SrcDir}/external/stlport/stlport",
775 "-I${SrcDir}/bionic/libstdc++/include",
776 "-I${SrcDir}/bionic")
Colin Crossed4cf0b2015-03-26 14:43:45 -0700777 }
778 case "libstdc++":
779 // Using bionic's basic libstdc++. Not actually an STL. Only around until the
780 // tree is in good enough shape to not need it.
781 // Host builds will use GNU libstdc++.
782 if ctx.Device() {
Colin Cross28344522015-04-22 13:07:53 -0700783 flags.CFlags = append(flags.CFlags, "-I${SrcDir}/bionic/libstdc++/include")
Colin Crossed4cf0b2015-03-26 14:43:45 -0700784 }
785 case "ndk_system":
Colin Cross1332b002015-04-07 17:11:30 -0700786 ndkSrcRoot := ctx.AConfig().SrcDir() + "/prebuilts/ndk/current/sources/"
Colin Cross28344522015-04-22 13:07:53 -0700787 flags.CFlags = append(flags.CFlags, "-isystem "+ndkSrcRoot+"cxx-stl/system/include")
Colin Crossed4cf0b2015-03-26 14:43:45 -0700788 case "ndk_libc++_shared", "ndk_libc++_static":
789 // TODO(danalbert): This really shouldn't be here...
790 flags.CppFlags = append(flags.CppFlags, "-std=c++11")
791 case "ndk_libstlport_shared", "ndk_libstlport_static", "ndk_libgnustl_static":
792 // Nothing
793 case "":
794 // None or error.
795 if ctx.Host() {
796 flags.CppFlags = append(flags.CppFlags, "-nostdinc++")
797 flags.LdFlags = append(flags.LdFlags, "-nodefaultlibs")
Colin Cross712fc022015-04-27 11:13:34 -0700798 if c.shared() {
799 flags.LdFlags = append(flags.LdFlags, hostDynamicGccLibs...)
800 } else {
801 flags.LdFlags = append(flags.LdFlags, hostStaticGccLibs...)
802 }
Colin Crossed4cf0b2015-03-26 14:43:45 -0700803 }
804 default:
Colin Crossfa138792015-04-24 17:31:52 -0700805 panic(fmt.Errorf("Unknown stl in CCLinked.Flags: %q", stl))
Colin Crossed4cf0b2015-03-26 14:43:45 -0700806 }
807
808 return flags
809}
810
Colin Crosse11befc2015-04-27 17:49:17 -0700811func (c *CCLinked) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps {
812 depNames = c.CCBase.depNames(ctx, depNames)
Colin Cross3f40fa42015-01-30 17:27:36 -0800813
Colin Crossed4cf0b2015-03-26 14:43:45 -0700814 stl := c.stl(ctx)
815 if ctx.Failed() {
816 return depNames
817 }
818
819 switch stl {
820 case "libc++":
821 depNames.SharedLibs = append(depNames.SharedLibs, stl)
822 case "libstdc++":
823 if ctx.Device() {
824 depNames.SharedLibs = append(depNames.SharedLibs, stl)
825 }
826 case "libc++_static":
827 depNames.StaticLibs = append(depNames.StaticLibs, stl)
828 case "stlport":
829 depNames.SharedLibs = append(depNames.SharedLibs, "libstdc++", "libstlport")
830 case "stlport_static":
831 depNames.StaticLibs = append(depNames.StaticLibs, "libstdc++", "libstlport_static")
832 case "":
833 // None or error.
834 case "ndk_system":
835 // TODO: Make a system STL prebuilt for the NDK.
836 // The system STL doesn't have a prebuilt (it uses the system's libstdc++), but it does have
Colin Crossfa138792015-04-24 17:31:52 -0700837 // its own includes. The includes are handled in CCBase.Flags().
Colin Cross577f6e42015-03-27 18:23:34 -0700838 depNames.SharedLibs = append([]string{"libstdc++"}, depNames.SharedLibs...)
Colin Crossed4cf0b2015-03-26 14:43:45 -0700839 case "ndk_libc++_shared", "ndk_libstlport_shared":
840 depNames.SharedLibs = append(depNames.SharedLibs, stl)
841 case "ndk_libc++_static", "ndk_libstlport_static", "ndk_libgnustl_static":
842 depNames.StaticLibs = append(depNames.StaticLibs, stl)
843 default:
Colin Crosse11befc2015-04-27 17:49:17 -0700844 panic(fmt.Errorf("Unknown stl in CCLinked.depNames: %q", stl))
Colin Crossed4cf0b2015-03-26 14:43:45 -0700845 }
846
Colin Crossf6566ed2015-03-24 11:13:38 -0700847 if ctx.Device() {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700848 if ctx.ModuleName() != "libcompiler_rt-extras" {
849 depNames.StaticLibs = append(depNames.StaticLibs, "libcompiler_rt-extras")
850 }
Colin Cross77b00fa2015-03-16 16:15:49 -0700851 // libgcc and libatomic have to be last on the command line
Colin Cross21b9a242015-03-24 14:15:58 -0700852 depNames.LateStaticLibs = append(depNames.LateStaticLibs, "libgcov", "libatomic", "libgcc")
Colin Crossed4cf0b2015-03-26 14:43:45 -0700853
854 if c.shared() {
855 depNames.SharedLibs = append(depNames.SharedLibs, c.systemSharedLibs(ctx)...)
856 }
Colin Cross577f6e42015-03-27 18:23:34 -0700857
Colin Crossfa138792015-04-24 17:31:52 -0700858 if c.Properties.Sdk_version != "" {
859 version := c.Properties.Sdk_version
Colin Cross577f6e42015-03-27 18:23:34 -0700860 depNames.SharedLibs = append(depNames.SharedLibs,
861 "ndk_libc."+version,
862 "ndk_libm."+version,
863 )
864 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800865 }
866
Colin Cross21b9a242015-03-24 14:15:58 -0700867 return depNames
Colin Cross3f40fa42015-01-30 17:27:36 -0800868}
869
Colin Crossed4cf0b2015-03-26 14:43:45 -0700870// ccLinkedInterface interface is used on ccLinked to deal with static or shared variants
871type ccLinkedInterface interface {
872 // Returns true if the build options for the module have selected a static or shared build
873 buildStatic() bool
874 buildShared() bool
875
876 // Sets whether a specific variant is static or shared
877 setStatic()
878 setShared()
879
880 // Returns whether a specific variant is static or shared
881 static() bool
882 shared() bool
883}
884
885var _ ccLinkedInterface = (*CCLibrary)(nil)
886var _ ccLinkedInterface = (*CCBinary)(nil)
887
Colin Crossfa138792015-04-24 17:31:52 -0700888func (c *CCLinked) static() bool {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700889 return c.dynamicProperties.VariantIsStatic
890}
891
Colin Crossfa138792015-04-24 17:31:52 -0700892func (c *CCLinked) shared() bool {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700893 return c.dynamicProperties.VariantIsShared
894}
895
Colin Crossfa138792015-04-24 17:31:52 -0700896func (c *CCLinked) setStatic() {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700897 c.dynamicProperties.VariantIsStatic = true
898}
899
Colin Crossfa138792015-04-24 17:31:52 -0700900func (c *CCLinked) setShared() {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700901 c.dynamicProperties.VariantIsShared = true
902}
903
Colin Cross28344522015-04-22 13:07:53 -0700904type ccExportedFlagsProducer interface {
905 exportedFlags() []string
Colin Cross3f40fa42015-01-30 17:27:36 -0800906}
907
908//
909// Combined static+shared libraries
910//
911
Colin Cross97ba0732015-03-23 17:50:24 -0700912type CCLibrary struct {
Colin Crossfa138792015-04-24 17:31:52 -0700913 CCLinked
Colin Cross3f40fa42015-01-30 17:27:36 -0800914
Colin Cross28344522015-04-22 13:07:53 -0700915 reuseFrom ccLibraryInterface
916 reuseObjFiles []string
917 objFiles []string
918 exportFlags []string
919 out string
Colin Cross3f40fa42015-01-30 17:27:36 -0800920
Colin Cross97ba0732015-03-23 17:50:24 -0700921 LibraryProperties struct {
Colin Cross3f40fa42015-01-30 17:27:36 -0800922 BuildStatic bool `blueprint:"mutated"`
923 BuildShared bool `blueprint:"mutated"`
Colin Crossed4cf0b2015-03-26 14:43:45 -0700924 Static struct {
Colin Cross3f40fa42015-01-30 17:27:36 -0800925 Srcs []string `android:"arch_variant"`
926 Cflags []string `android:"arch_variant"`
927 } `android:"arch_variant"`
928 Shared struct {
929 Srcs []string `android:"arch_variant"`
930 Cflags []string `android:"arch_variant"`
931 } `android:"arch_variant"`
932 }
933}
934
Colin Crossed4cf0b2015-03-26 14:43:45 -0700935func (c *CCLibrary) buildStatic() bool {
936 return c.LibraryProperties.BuildStatic
937}
938
939func (c *CCLibrary) buildShared() bool {
940 return c.LibraryProperties.BuildShared
941}
942
Colin Cross97ba0732015-03-23 17:50:24 -0700943type ccLibraryInterface interface {
Colin Crossed4cf0b2015-03-26 14:43:45 -0700944 ccLinkedInterface
Colin Cross97ba0732015-03-23 17:50:24 -0700945 ccLibrary() *CCLibrary
Colin Crossed4cf0b2015-03-26 14:43:45 -0700946 setReuseFrom(ccLibraryInterface)
947 getReuseFrom() ccLibraryInterface
948 getReuseObjFiles() []string
Colin Cross97ba0732015-03-23 17:50:24 -0700949 allObjFiles() []string
Colin Crossc472d572015-03-17 15:06:21 -0700950}
951
Colin Crossed4cf0b2015-03-26 14:43:45 -0700952var _ ccLibraryInterface = (*CCLibrary)(nil)
953
Colin Cross97ba0732015-03-23 17:50:24 -0700954func (c *CCLibrary) ccLibrary() *CCLibrary {
955 return c
Colin Cross3f40fa42015-01-30 17:27:36 -0800956}
957
Colin Cross97ba0732015-03-23 17:50:24 -0700958func NewCCLibrary(library *CCLibrary, module CCModuleType,
959 hod common.HostOrDeviceSupported) (blueprint.Module, []interface{}) {
960
Colin Crossfa138792015-04-24 17:31:52 -0700961 return newCCDynamic(&library.CCLinked, module, hod, common.MultilibBoth,
Colin Cross97ba0732015-03-23 17:50:24 -0700962 &library.LibraryProperties)
963}
964
965func CCLibraryFactory() (blueprint.Module, []interface{}) {
966 module := &CCLibrary{}
967
968 module.LibraryProperties.BuildShared = true
969 module.LibraryProperties.BuildStatic = true
970
971 return NewCCLibrary(module, module, common.HostAndDeviceSupported)
972}
973
Colin Cross0676e2d2015-04-24 17:39:18 -0700974func (c *CCLibrary) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps {
Colin Crosse11befc2015-04-27 17:49:17 -0700975 depNames = c.CCLinked.depNames(ctx, depNames)
Colin Cross21b9a242015-03-24 14:15:58 -0700976 if c.shared() {
Colin Crossf6566ed2015-03-24 11:13:38 -0700977 if ctx.Device() {
Colin Cross21b9a242015-03-24 14:15:58 -0700978 depNames.CrtBegin = "crtbegin_so"
979 depNames.CrtEnd = "crtend_so"
Colin Cross3f40fa42015-01-30 17:27:36 -0800980 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800981 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800982
Colin Cross21b9a242015-03-24 14:15:58 -0700983 return depNames
Colin Cross3f40fa42015-01-30 17:27:36 -0800984}
985
Colin Cross97ba0732015-03-23 17:50:24 -0700986func (c *CCLibrary) outputFile() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800987 return c.out
988}
989
Colin Crossed4cf0b2015-03-26 14:43:45 -0700990func (c *CCLibrary) getReuseObjFiles() []string {
991 return c.reuseObjFiles
992}
993
994func (c *CCLibrary) setReuseFrom(reuseFrom ccLibraryInterface) {
995 c.reuseFrom = reuseFrom
996}
997
998func (c *CCLibrary) getReuseFrom() ccLibraryInterface {
999 return c.reuseFrom
1000}
1001
Colin Cross97ba0732015-03-23 17:50:24 -07001002func (c *CCLibrary) allObjFiles() []string {
Colin Cross3f40fa42015-01-30 17:27:36 -08001003 return c.objFiles
1004}
1005
Colin Cross28344522015-04-22 13:07:53 -07001006func (c *CCLibrary) exportedFlags() []string {
1007 return c.exportFlags
Colin Cross3f40fa42015-01-30 17:27:36 -08001008}
1009
Colin Cross0676e2d2015-04-24 17:39:18 -07001010func (c *CCLibrary) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags {
Colin Crosse11befc2015-04-27 17:49:17 -07001011 flags = c.CCLinked.flags(ctx, flags)
Colin Cross21b9a242015-03-24 14:15:58 -07001012
Colin Cross97ba0732015-03-23 17:50:24 -07001013 flags.CFlags = append(flags.CFlags, "-fPIC")
Colin Cross3f40fa42015-01-30 17:27:36 -08001014
Colin Crossed4cf0b2015-03-26 14:43:45 -07001015 if c.shared() {
Colin Cross3f40fa42015-01-30 17:27:36 -08001016 libName := ctx.ModuleName()
1017 // GCC for Android assumes that -shared means -Bsymbolic, use -Wl,-shared instead
1018 sharedFlag := "-Wl,-shared"
Colin Crossfa138792015-04-24 17:31:52 -07001019 if c.Properties.Clang || ctx.Host() {
Colin Cross3f40fa42015-01-30 17:27:36 -08001020 sharedFlag = "-shared"
1021 }
Colin Crossf6566ed2015-03-24 11:13:38 -07001022 if ctx.Device() {
Colin Cross97ba0732015-03-23 17:50:24 -07001023 flags.LdFlags = append(flags.LdFlags, "-nostdlib")
Colin Cross3f40fa42015-01-30 17:27:36 -08001024 }
Colin Cross97ba0732015-03-23 17:50:24 -07001025
1026 flags.LdFlags = append(flags.LdFlags,
1027 "-Wl,--gc-sections",
1028 sharedFlag,
1029 "-Wl,-soname,"+libName+sharedLibraryExtension,
1030 )
Colin Cross3f40fa42015-01-30 17:27:36 -08001031 }
Colin Cross97ba0732015-03-23 17:50:24 -07001032
1033 return flags
Colin Cross3f40fa42015-01-30 17:27:36 -08001034}
1035
Colin Cross97ba0732015-03-23 17:50:24 -07001036func (c *CCLibrary) compileStaticLibrary(ctx common.AndroidModuleContext,
1037 flags CCFlags, deps CCDeps, objFiles []string) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001038
1039 staticFlags := flags
Colin Cross97ba0732015-03-23 17:50:24 -07001040 staticFlags.CFlags = append(staticFlags.CFlags, c.LibraryProperties.Static.Cflags...)
Colin Cross581c1892015-04-07 16:50:10 -07001041 objFilesStatic := c.customCompileObjs(ctx, staticFlags, common.DeviceStaticLibrary,
Colin Cross97ba0732015-03-23 17:50:24 -07001042 c.LibraryProperties.Static.Srcs)
Colin Cross3f40fa42015-01-30 17:27:36 -08001043
1044 objFiles = append(objFiles, objFilesStatic...)
Colin Cross21b9a242015-03-24 14:15:58 -07001045 objFiles = append(objFiles, deps.WholeStaticLibObjFiles...)
Colin Cross3f40fa42015-01-30 17:27:36 -08001046
1047 outputFile := filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+staticLibraryExtension)
1048
1049 TransformObjToStaticLib(ctx, objFiles, ccFlagsToBuilderFlags(flags), outputFile)
1050
1051 c.objFiles = objFiles
1052 c.out = outputFile
Colin Crossfa138792015-04-24 17:31:52 -07001053 includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx))
Colin Cross28344522015-04-22 13:07:53 -07001054 c.exportFlags = []string{includeDirsToFlags(includeDirs)}
Colin Cross3f40fa42015-01-30 17:27:36 -08001055
1056 ctx.CheckbuildFile(outputFile)
1057}
1058
Colin Cross97ba0732015-03-23 17:50:24 -07001059func (c *CCLibrary) compileSharedLibrary(ctx common.AndroidModuleContext,
1060 flags CCFlags, deps CCDeps, objFiles []string) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001061
1062 sharedFlags := flags
Colin Cross97ba0732015-03-23 17:50:24 -07001063 sharedFlags.CFlags = append(sharedFlags.CFlags, c.LibraryProperties.Shared.Cflags...)
Colin Cross581c1892015-04-07 16:50:10 -07001064 objFilesShared := c.customCompileObjs(ctx, sharedFlags, common.DeviceSharedLibrary,
Colin Cross97ba0732015-03-23 17:50:24 -07001065 c.LibraryProperties.Shared.Srcs)
Colin Cross3f40fa42015-01-30 17:27:36 -08001066
1067 objFiles = append(objFiles, objFilesShared...)
1068
1069 outputFile := filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+sharedLibraryExtension)
1070
Colin Cross97ba0732015-03-23 17:50:24 -07001071 TransformObjToDynamicBinary(ctx, objFiles, deps.SharedLibs, deps.StaticLibs,
Colin Crossed4cf0b2015-03-26 14:43:45 -07001072 deps.LateStaticLibs, deps.WholeStaticLibs, deps.CrtBegin, deps.CrtEnd, false,
Colin Cross77b00fa2015-03-16 16:15:49 -07001073 ccFlagsToBuilderFlags(flags), outputFile)
Colin Cross3f40fa42015-01-30 17:27:36 -08001074
1075 c.out = outputFile
Colin Crossfa138792015-04-24 17:31:52 -07001076 includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx))
Colin Cross28344522015-04-22 13:07:53 -07001077 c.exportFlags = []string{includeDirsToFlags(includeDirs)}
Colin Cross3f40fa42015-01-30 17:27:36 -08001078}
1079
Colin Cross97ba0732015-03-23 17:50:24 -07001080func (c *CCLibrary) compileModule(ctx common.AndroidModuleContext,
1081 flags CCFlags, deps CCDeps, objFiles []string) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001082
1083 // Reuse the object files from the matching static library if it exists
Colin Crossed4cf0b2015-03-26 14:43:45 -07001084 if c.getReuseFrom().ccLibrary() == c {
1085 c.reuseObjFiles = objFiles
Colin Cross3f40fa42015-01-30 17:27:36 -08001086 } else {
Colin Crossed4cf0b2015-03-26 14:43:45 -07001087 objFiles = append([]string(nil), c.getReuseFrom().getReuseObjFiles()...)
Colin Cross3f40fa42015-01-30 17:27:36 -08001088 }
1089
Colin Crossed4cf0b2015-03-26 14:43:45 -07001090 if c.static() {
Colin Cross3f40fa42015-01-30 17:27:36 -08001091 c.compileStaticLibrary(ctx, flags, deps, objFiles)
1092 } else {
1093 c.compileSharedLibrary(ctx, flags, deps, objFiles)
1094 }
1095}
1096
Colin Cross97ba0732015-03-23 17:50:24 -07001097func (c *CCLibrary) installStaticLibrary(ctx common.AndroidModuleContext, flags CCFlags) {
Dan Albertc403f7c2015-03-18 14:01:18 -07001098 // Static libraries do not get installed.
1099}
1100
Colin Cross97ba0732015-03-23 17:50:24 -07001101func (c *CCLibrary) installSharedLibrary(ctx common.AndroidModuleContext, flags CCFlags) {
Dan Albertc403f7c2015-03-18 14:01:18 -07001102 installDir := "lib"
Colin Cross97ba0732015-03-23 17:50:24 -07001103 if flags.Toolchain.Is64Bit() {
Dan Albertc403f7c2015-03-18 14:01:18 -07001104 installDir = "lib64"
1105 }
1106
Colin Crossfa138792015-04-24 17:31:52 -07001107 ctx.InstallFile(filepath.Join(installDir, c.Properties.Relative_install_path), c.out)
Dan Albertc403f7c2015-03-18 14:01:18 -07001108}
1109
Colin Cross97ba0732015-03-23 17:50:24 -07001110func (c *CCLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) {
Colin Crossed4cf0b2015-03-26 14:43:45 -07001111 if c.static() {
Dan Albertc403f7c2015-03-18 14:01:18 -07001112 c.installStaticLibrary(ctx, flags)
1113 } else {
1114 c.installSharedLibrary(ctx, flags)
1115 }
1116}
1117
Colin Cross3f40fa42015-01-30 17:27:36 -08001118//
1119// Objects (for crt*.o)
1120//
1121
1122type ccObject struct {
Colin Crossfa138792015-04-24 17:31:52 -07001123 CCBase
Colin Cross3f40fa42015-01-30 17:27:36 -08001124 out string
1125}
1126
Colin Cross97ba0732015-03-23 17:50:24 -07001127func CCObjectFactory() (blueprint.Module, []interface{}) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001128 module := &ccObject{}
Colin Cross3f40fa42015-01-30 17:27:36 -08001129
Colin Crossfa138792015-04-24 17:31:52 -07001130 return newCCBase(&module.CCBase, module, common.DeviceSupported, common.MultilibBoth)
Colin Cross3f40fa42015-01-30 17:27:36 -08001131}
1132
1133func (*ccObject) AndroidDynamicDependencies(ctx common.AndroidDynamicDependerModuleContext) []string {
1134 // object files can't have any dynamic dependencies
1135 return nil
1136}
1137
Colin Cross0676e2d2015-04-24 17:39:18 -07001138func (*ccObject) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps {
Colin Cross21b9a242015-03-24 14:15:58 -07001139 // object files can't have any dynamic dependencies
1140 return CCDeps{}
Colin Cross3f40fa42015-01-30 17:27:36 -08001141}
1142
1143func (c *ccObject) compileModule(ctx common.AndroidModuleContext,
Colin Cross97ba0732015-03-23 17:50:24 -07001144 flags CCFlags, deps CCDeps, objFiles []string) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001145
Colin Cross97ba0732015-03-23 17:50:24 -07001146 objFiles = append(objFiles, deps.ObjFiles...)
Colin Cross3f40fa42015-01-30 17:27:36 -08001147
1148 var outputFile string
1149 if len(objFiles) == 1 {
1150 outputFile = objFiles[0]
1151 } else {
1152 outputFile = filepath.Join(common.ModuleOutDir(ctx), ctx.ModuleName()+".o")
1153 TransformObjsToObj(ctx, objFiles, ccFlagsToBuilderFlags(flags), outputFile)
1154 }
1155
1156 c.out = outputFile
1157
1158 ctx.CheckbuildFile(outputFile)
1159}
1160
Colin Cross97ba0732015-03-23 17:50:24 -07001161func (c *ccObject) installModule(ctx common.AndroidModuleContext, flags CCFlags) {
Dan Albertc403f7c2015-03-18 14:01:18 -07001162 // Object files do not get installed.
1163}
1164
Colin Cross3f40fa42015-01-30 17:27:36 -08001165func (c *ccObject) outputFile() string {
1166 return c.out
1167}
1168
1169//
1170// Executables
1171//
1172
Colin Cross97ba0732015-03-23 17:50:24 -07001173type CCBinary struct {
Colin Crossfa138792015-04-24 17:31:52 -07001174 CCLinked
Dan Albertc403f7c2015-03-18 14:01:18 -07001175 out string
Colin Cross97ba0732015-03-23 17:50:24 -07001176 BinaryProperties struct {
1177 // static_executable: compile executable with -static
1178 Static_executable bool
1179
1180 // stem: set the name of the output
1181 Stem string `android:"arch_variant"`
1182
Colin Cross4ae185c2015-03-26 15:12:10 -07001183 // suffix: append to the name of the output
1184 Suffix string `android:"arch_variant"`
1185
Colin Cross97ba0732015-03-23 17:50:24 -07001186 // prefix_symbols: if set, add an extra objcopy --prefix-symbols= step
1187 Prefix_symbols string
1188 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001189}
1190
Colin Crossed4cf0b2015-03-26 14:43:45 -07001191func (c *CCBinary) buildStatic() bool {
1192 return c.BinaryProperties.Static_executable
1193}
1194
1195func (c *CCBinary) buildShared() bool {
1196 return !c.BinaryProperties.Static_executable
1197}
1198
Colin Cross97ba0732015-03-23 17:50:24 -07001199func (c *CCBinary) getStem(ctx common.AndroidModuleContext) string {
Colin Cross4ae185c2015-03-26 15:12:10 -07001200 stem := ctx.ModuleName()
Colin Cross97ba0732015-03-23 17:50:24 -07001201 if c.BinaryProperties.Stem != "" {
Colin Cross4ae185c2015-03-26 15:12:10 -07001202 stem = c.BinaryProperties.Stem
Colin Cross3f40fa42015-01-30 17:27:36 -08001203 }
Colin Cross4ae185c2015-03-26 15:12:10 -07001204
1205 return stem + c.BinaryProperties.Suffix
Colin Cross3f40fa42015-01-30 17:27:36 -08001206}
1207
Colin Cross0676e2d2015-04-24 17:39:18 -07001208func (c *CCBinary) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps {
Colin Crosse11befc2015-04-27 17:49:17 -07001209 depNames = c.CCLinked.depNames(ctx, depNames)
Colin Crossf6566ed2015-03-24 11:13:38 -07001210 if ctx.Device() {
Colin Cross97ba0732015-03-23 17:50:24 -07001211 if c.BinaryProperties.Static_executable {
Colin Cross21b9a242015-03-24 14:15:58 -07001212 depNames.CrtBegin = "crtbegin_static"
Colin Cross3f40fa42015-01-30 17:27:36 -08001213 } else {
Colin Cross21b9a242015-03-24 14:15:58 -07001214 depNames.CrtBegin = "crtbegin_dynamic"
Colin Cross3f40fa42015-01-30 17:27:36 -08001215 }
Colin Cross21b9a242015-03-24 14:15:58 -07001216 depNames.CrtEnd = "crtend_android"
Colin Crossed4cf0b2015-03-26 14:43:45 -07001217
1218 if c.BinaryProperties.Static_executable {
1219 // static libraries libcompiler_rt, libc and libc_nomalloc need to be linked with
1220 // --start-group/--end-group along with libgcc. If they are in deps.StaticLibs,
1221 // move them to the beginning of deps.LateStaticLibs
1222 var groupLibs []string
1223 depNames.StaticLibs, groupLibs = filterList(depNames.StaticLibs,
1224 []string{"libc", "libc_nomalloc", "libcompiler_rt"})
1225 depNames.LateStaticLibs = append(groupLibs, depNames.LateStaticLibs...)
1226 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001227 }
Colin Cross21b9a242015-03-24 14:15:58 -07001228 return depNames
Colin Cross3f40fa42015-01-30 17:27:36 -08001229}
1230
Colin Cross97ba0732015-03-23 17:50:24 -07001231func NewCCBinary(binary *CCBinary, module CCModuleType,
Colin Cross1f8f2342015-03-26 16:09:47 -07001232 hod common.HostOrDeviceSupported, props ...interface{}) (blueprint.Module, []interface{}) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001233
Colin Cross1f8f2342015-03-26 16:09:47 -07001234 props = append(props, &binary.BinaryProperties)
1235
Colin Crossfa138792015-04-24 17:31:52 -07001236 return newCCDynamic(&binary.CCLinked, module, hod, common.MultilibFirst, props...)
Colin Cross3f40fa42015-01-30 17:27:36 -08001237}
1238
Colin Cross97ba0732015-03-23 17:50:24 -07001239func CCBinaryFactory() (blueprint.Module, []interface{}) {
1240 module := &CCBinary{}
1241
1242 return NewCCBinary(module, module, common.HostAndDeviceSupported)
Colin Cross3f40fa42015-01-30 17:27:36 -08001243}
1244
Colin Cross0676e2d2015-04-24 17:39:18 -07001245func (c *CCBinary) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags {
Colin Crosse11befc2015-04-27 17:49:17 -07001246 flags = c.CCLinked.flags(ctx, flags)
Colin Cross21b9a242015-03-24 14:15:58 -07001247
Colin Cross97ba0732015-03-23 17:50:24 -07001248 flags.CFlags = append(flags.CFlags, "-fpie")
1249
Colin Crossf6566ed2015-03-24 11:13:38 -07001250 if ctx.Device() {
Colin Crossed4cf0b2015-03-26 14:43:45 -07001251 if c.BinaryProperties.Static_executable {
1252 // Clang driver needs -static to create static executable.
1253 // However, bionic/linker uses -shared to overwrite.
1254 // Linker for x86 targets does not allow coexistance of -static and -shared,
1255 // so we add -static only if -shared is not used.
1256 if !inList("-shared", flags.LdFlags) {
1257 flags.LdFlags = append(flags.LdFlags, "-static")
1258 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001259
Colin Crossed4cf0b2015-03-26 14:43:45 -07001260 flags.LdFlags = append(flags.LdFlags,
1261 "-nostdlib",
1262 "-Bstatic",
1263 "-Wl,--gc-sections",
1264 )
1265
1266 } else {
1267 linker := "/system/bin/linker"
1268 if flags.Toolchain.Is64Bit() {
1269 linker = "/system/bin/linker64"
1270 }
1271
1272 flags.LdFlags = append(flags.LdFlags,
1273 "-nostdlib",
1274 "-Bdynamic",
1275 fmt.Sprintf("-Wl,-dynamic-linker,%s", linker),
1276 "-Wl,--gc-sections",
1277 "-Wl,-z,nocopyreloc",
1278 )
1279 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001280 }
1281
Colin Cross97ba0732015-03-23 17:50:24 -07001282 return flags
Colin Cross3f40fa42015-01-30 17:27:36 -08001283}
1284
Colin Cross97ba0732015-03-23 17:50:24 -07001285func (c *CCBinary) compileModule(ctx common.AndroidModuleContext,
1286 flags CCFlags, deps CCDeps, objFiles []string) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001287
Colin Crossfa138792015-04-24 17:31:52 -07001288 if !c.BinaryProperties.Static_executable && inList("libc", c.Properties.Static_libs) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001289 ctx.ModuleErrorf("statically linking libc to dynamic executable, please remove libc\n" +
1290 "from static libs or set static_executable: true")
1291 }
1292
1293 outputFile := filepath.Join(common.ModuleOutDir(ctx), c.getStem(ctx))
Dan Albertc403f7c2015-03-18 14:01:18 -07001294 c.out = outputFile
Colin Crossbfae8852015-03-26 14:44:11 -07001295 if c.BinaryProperties.Prefix_symbols != "" {
1296 afterPrefixSymbols := outputFile
1297 outputFile = outputFile + ".intermediate"
1298 TransformBinaryPrefixSymbols(ctx, c.BinaryProperties.Prefix_symbols, outputFile,
1299 ccFlagsToBuilderFlags(flags), afterPrefixSymbols)
1300 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001301
Colin Cross97ba0732015-03-23 17:50:24 -07001302 TransformObjToDynamicBinary(ctx, objFiles, deps.SharedLibs, deps.StaticLibs,
Colin Crossed4cf0b2015-03-26 14:43:45 -07001303 deps.LateStaticLibs, deps.WholeStaticLibs, deps.CrtBegin, deps.CrtEnd, true,
Colin Cross77b00fa2015-03-16 16:15:49 -07001304 ccFlagsToBuilderFlags(flags), outputFile)
Dan Albertc403f7c2015-03-18 14:01:18 -07001305}
Colin Cross3f40fa42015-01-30 17:27:36 -08001306
Colin Cross97ba0732015-03-23 17:50:24 -07001307func (c *CCBinary) installModule(ctx common.AndroidModuleContext, flags CCFlags) {
Colin Crossfa138792015-04-24 17:31:52 -07001308 ctx.InstallFile(filepath.Join("bin", c.Properties.Relative_install_path), c.out)
Dan Albertc403f7c2015-03-18 14:01:18 -07001309}
1310
Colin Cross9ffb4f52015-04-24 17:48:09 -07001311type CCTest struct {
Colin Cross97ba0732015-03-23 17:50:24 -07001312 CCBinary
Colin Cross6b290692015-03-19 14:05:33 -07001313
Colin Cross9ffb4f52015-04-24 17:48:09 -07001314 TestProperties struct {
Colin Cross6b290692015-03-19 14:05:33 -07001315 // test_per_src: Create a separate test for each source file. Useful when there is
1316 // global state that can not be torn down and reset between each test suite.
1317 Test_per_src bool
1318 }
Dan Albertc403f7c2015-03-18 14:01:18 -07001319}
1320
Colin Cross9ffb4f52015-04-24 17:48:09 -07001321func (c *CCTest) flags(ctx common.AndroidModuleContext, flags CCFlags) CCFlags {
Colin Cross0676e2d2015-04-24 17:39:18 -07001322 flags = c.CCBinary.flags(ctx, flags)
Dan Albertc403f7c2015-03-18 14:01:18 -07001323
Colin Cross97ba0732015-03-23 17:50:24 -07001324 flags.CFlags = append(flags.CFlags, "-DGTEST_HAS_STD_STRING")
Colin Crossf6566ed2015-03-24 11:13:38 -07001325 if ctx.Host() {
Colin Cross97ba0732015-03-23 17:50:24 -07001326 flags.CFlags = append(flags.CFlags, "-O0", "-g")
Colin Cross28344522015-04-22 13:07:53 -07001327 flags.LdFlags = append(flags.LdFlags, "-lpthread")
Dan Albertc403f7c2015-03-18 14:01:18 -07001328 }
1329
1330 // TODO(danalbert): Make gtest export its dependencies.
Colin Cross28344522015-04-22 13:07:53 -07001331 flags.CFlags = append(flags.CFlags,
1332 "-I"+filepath.Join(ctx.AConfig().SrcDir(), "external/gtest/include"))
Dan Albertc403f7c2015-03-18 14:01:18 -07001333
Colin Cross21b9a242015-03-24 14:15:58 -07001334 return flags
Dan Albertc403f7c2015-03-18 14:01:18 -07001335}
1336
Colin Cross9ffb4f52015-04-24 17:48:09 -07001337func (c *CCTest) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps {
Colin Cross0676e2d2015-04-24 17:39:18 -07001338 depNames = c.CCBinary.depNames(ctx, depNames)
Colin Cross21b9a242015-03-24 14:15:58 -07001339 depNames.StaticLibs = append(depNames.StaticLibs, "libgtest", "libgtest_main")
1340 return depNames
Dan Albertc403f7c2015-03-18 14:01:18 -07001341}
1342
Colin Cross9ffb4f52015-04-24 17:48:09 -07001343func (c *CCTest) installModule(ctx common.AndroidModuleContext, flags CCFlags) {
Colin Crossf6566ed2015-03-24 11:13:38 -07001344 if ctx.Device() {
Tim Kilbourn5ccc7302015-03-19 10:02:21 -07001345 ctx.InstallFile("../data/nativetest/"+ctx.ModuleName(), c.out)
Dan Albertc403f7c2015-03-18 14:01:18 -07001346 } else {
Colin Cross97ba0732015-03-23 17:50:24 -07001347 c.CCBinary.installModule(ctx, flags)
Dan Albertc403f7c2015-03-18 14:01:18 -07001348 }
1349}
1350
Colin Cross9ffb4f52015-04-24 17:48:09 -07001351func (c *CCTest) testPerSrc() bool {
1352 return c.TestProperties.Test_per_src
Colin Cross6b290692015-03-19 14:05:33 -07001353}
1354
Colin Cross9ffb4f52015-04-24 17:48:09 -07001355func (c *CCTest) test() *CCTest {
1356 return c
1357}
1358
1359func NewCCTest(test *CCTest, module CCModuleType,
1360 hod common.HostOrDeviceSupported, props ...interface{}) (blueprint.Module, []interface{}) {
1361
1362 props = append(props, &test.TestProperties)
1363
1364 return NewCCBinary(&test.CCBinary, module, hod, props...)
1365}
1366
1367func CCTestFactory() (blueprint.Module, []interface{}) {
1368 module := &CCTest{}
1369
1370 return NewCCTest(module, module, common.HostAndDeviceSupported)
1371}
1372
1373type testPerSrc interface {
1374 test() *CCTest
1375 testPerSrc() bool
1376}
1377
1378var _ testPerSrc = (*CCTest)(nil)
1379
Colin Cross6b290692015-03-19 14:05:33 -07001380func TestPerSrcMutator(mctx blueprint.EarlyMutatorContext) {
Colin Cross9ffb4f52015-04-24 17:48:09 -07001381 if test, ok := mctx.Module().(testPerSrc); ok {
1382 if test.testPerSrc() {
1383 testNames := make([]string, len(test.test().Properties.Srcs))
1384 for i, src := range test.test().Properties.Srcs {
Colin Cross6b290692015-03-19 14:05:33 -07001385 testNames[i] = strings.TrimSuffix(src, filepath.Ext(src))
1386 }
1387 tests := mctx.CreateLocalVariations(testNames...)
Colin Cross9ffb4f52015-04-24 17:48:09 -07001388 for i, src := range test.test().Properties.Srcs {
1389 tests[i].(testPerSrc).test().Properties.Srcs = []string{src}
1390 tests[i].(testPerSrc).test().BinaryProperties.Stem = testNames[i]
Colin Cross6b290692015-03-19 14:05:33 -07001391 }
1392 }
1393 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001394}
1395
1396//
1397// Static library
1398//
1399
Colin Cross97ba0732015-03-23 17:50:24 -07001400func CCLibraryStaticFactory() (blueprint.Module, []interface{}) {
1401 module := &CCLibrary{}
1402 module.LibraryProperties.BuildStatic = true
Colin Cross3f40fa42015-01-30 17:27:36 -08001403
Colin Cross97ba0732015-03-23 17:50:24 -07001404 return NewCCLibrary(module, module, common.HostAndDeviceSupported)
Colin Cross3f40fa42015-01-30 17:27:36 -08001405}
1406
1407//
1408// Shared libraries
1409//
1410
Colin Cross97ba0732015-03-23 17:50:24 -07001411func CCLibrarySharedFactory() (blueprint.Module, []interface{}) {
1412 module := &CCLibrary{}
1413 module.LibraryProperties.BuildShared = true
Colin Cross3f40fa42015-01-30 17:27:36 -08001414
Colin Cross97ba0732015-03-23 17:50:24 -07001415 return NewCCLibrary(module, module, common.HostAndDeviceSupported)
Colin Cross3f40fa42015-01-30 17:27:36 -08001416}
1417
1418//
1419// Host static library
1420//
1421
Colin Cross97ba0732015-03-23 17:50:24 -07001422func CCLibraryHostStaticFactory() (blueprint.Module, []interface{}) {
1423 module := &CCLibrary{}
1424 module.LibraryProperties.BuildStatic = true
Colin Cross3f40fa42015-01-30 17:27:36 -08001425
Colin Cross97ba0732015-03-23 17:50:24 -07001426 return NewCCLibrary(module, module, common.HostSupported)
Colin Cross3f40fa42015-01-30 17:27:36 -08001427}
1428
1429//
1430// Host Shared libraries
1431//
1432
Colin Cross97ba0732015-03-23 17:50:24 -07001433func CCLibraryHostSharedFactory() (blueprint.Module, []interface{}) {
1434 module := &CCLibrary{}
1435 module.LibraryProperties.BuildShared = true
Colin Cross3f40fa42015-01-30 17:27:36 -08001436
Colin Cross97ba0732015-03-23 17:50:24 -07001437 return NewCCLibrary(module, module, common.HostSupported)
Colin Cross3f40fa42015-01-30 17:27:36 -08001438}
1439
1440//
1441// Host Binaries
1442//
1443
Colin Cross97ba0732015-03-23 17:50:24 -07001444func CCBinaryHostFactory() (blueprint.Module, []interface{}) {
1445 module := &CCBinary{}
Colin Cross3f40fa42015-01-30 17:27:36 -08001446
Colin Cross97ba0732015-03-23 17:50:24 -07001447 return NewCCBinary(module, module, common.HostSupported)
Colin Cross3f40fa42015-01-30 17:27:36 -08001448}
1449
1450//
Colin Cross1f8f2342015-03-26 16:09:47 -07001451// Host Tests
1452//
1453
1454func CCTestHostFactory() (blueprint.Module, []interface{}) {
Colin Cross9ffb4f52015-04-24 17:48:09 -07001455 module := &CCTest{}
Colin Cross1f8f2342015-03-26 16:09:47 -07001456 return NewCCBinary(&module.CCBinary, module, common.HostSupported,
Colin Cross9ffb4f52015-04-24 17:48:09 -07001457 &module.TestProperties)
Colin Cross1f8f2342015-03-26 16:09:47 -07001458}
1459
1460//
Colin Cross3f40fa42015-01-30 17:27:36 -08001461// Device libraries shipped with gcc
1462//
1463
1464type toolchainLibrary struct {
Colin Cross97ba0732015-03-23 17:50:24 -07001465 CCLibrary
Colin Cross3f40fa42015-01-30 17:27:36 -08001466}
1467
1468func (*toolchainLibrary) AndroidDynamicDependencies(ctx common.AndroidDynamicDependerModuleContext) []string {
1469 // toolchain libraries can't have any dependencies
1470 return nil
1471}
1472
Colin Cross0676e2d2015-04-24 17:39:18 -07001473func (*toolchainLibrary) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps {
Colin Cross3f40fa42015-01-30 17:27:36 -08001474 // toolchain libraries can't have any dependencies
Colin Cross21b9a242015-03-24 14:15:58 -07001475 return CCDeps{}
Colin Cross3f40fa42015-01-30 17:27:36 -08001476}
1477
Colin Cross97ba0732015-03-23 17:50:24 -07001478func ToolchainLibraryFactory() (blueprint.Module, []interface{}) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001479 module := &toolchainLibrary{}
Colin Cross3f40fa42015-01-30 17:27:36 -08001480
Colin Cross97ba0732015-03-23 17:50:24 -07001481 module.LibraryProperties.BuildStatic = true
1482
Colin Crossfa138792015-04-24 17:31:52 -07001483 return newCCBase(&module.CCBase, module, common.DeviceSupported, common.MultilibBoth,
Colin Cross21b9a242015-03-24 14:15:58 -07001484 &module.LibraryProperties)
Colin Cross3f40fa42015-01-30 17:27:36 -08001485}
1486
1487func (c *toolchainLibrary) compileModule(ctx common.AndroidModuleContext,
Colin Cross97ba0732015-03-23 17:50:24 -07001488 flags CCFlags, deps CCDeps, objFiles []string) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001489
1490 libName := ctx.ModuleName() + staticLibraryExtension
1491 outputFile := filepath.Join(common.ModuleOutDir(ctx), libName)
1492
1493 CopyGccLib(ctx, libName, ccFlagsToBuilderFlags(flags), outputFile)
1494
1495 c.out = outputFile
1496
1497 ctx.CheckbuildFile(outputFile)
1498}
1499
Colin Cross97ba0732015-03-23 17:50:24 -07001500func (c *toolchainLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) {
Dan Albertc403f7c2015-03-18 14:01:18 -07001501 // Toolchain libraries do not get installed.
1502}
1503
Dan Albertbe961682015-03-18 23:38:50 -07001504// NDK prebuilt libraries.
1505//
1506// These differ from regular prebuilts in that they aren't stripped and usually aren't installed
1507// either (with the exception of the shared STLs, which are installed to the app's directory rather
1508// than to the system image).
1509
1510func getNdkLibDir(ctx common.AndroidModuleContext, toolchain Toolchain, version string) string {
1511 return fmt.Sprintf("%s/prebuilts/ndk/current/platforms/android-%s/arch-%s/usr/lib",
Colin Cross1332b002015-04-07 17:11:30 -07001512 ctx.AConfig().SrcDir(), version, toolchain.Name())
Dan Albertbe961682015-03-18 23:38:50 -07001513}
1514
1515type ndkPrebuiltLibrary struct {
1516 CCLibrary
1517}
1518
1519func (*ndkPrebuiltLibrary) AndroidDynamicDependencies(
1520 ctx common.AndroidDynamicDependerModuleContext) []string {
1521
1522 // NDK libraries can't have any dependencies
1523 return nil
1524}
1525
Colin Cross0676e2d2015-04-24 17:39:18 -07001526func (*ndkPrebuiltLibrary) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps {
Dan Albertbe961682015-03-18 23:38:50 -07001527 // NDK libraries can't have any dependencies
1528 return CCDeps{}
1529}
1530
1531func NdkPrebuiltLibraryFactory() (blueprint.Module, []interface{}) {
1532 module := &ndkPrebuiltLibrary{}
1533 module.LibraryProperties.BuildShared = true
1534 return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported)
1535}
1536
1537func (c *ndkPrebuiltLibrary) compileModule(ctx common.AndroidModuleContext, flags CCFlags,
1538 deps CCDeps, objFiles []string) {
1539 // A null build step, but it sets up the output path.
1540 if !strings.HasPrefix(ctx.ModuleName(), "ndk_lib") {
1541 ctx.ModuleErrorf("NDK prebuilts must have an ndk_lib prefixed name")
1542 }
1543
Colin Crossfa138792015-04-24 17:31:52 -07001544 includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx))
Colin Cross28344522015-04-22 13:07:53 -07001545 c.exportFlags = []string{common.JoinWithPrefix(includeDirs, "-isystem ")}
Dan Albertbe961682015-03-18 23:38:50 -07001546
1547 // NDK prebuilt libraries are named like: ndk_LIBNAME.SDK_VERSION.
1548 // We want to translate to just LIBNAME.
1549 libName := strings.Split(strings.TrimPrefix(ctx.ModuleName(), "ndk_"), ".")[0]
Colin Crossfa138792015-04-24 17:31:52 -07001550 libDir := getNdkLibDir(ctx, flags.Toolchain, c.Properties.Sdk_version)
Colin Crossed4cf0b2015-03-26 14:43:45 -07001551 c.out = filepath.Join(libDir, libName+sharedLibraryExtension)
Dan Albertbe961682015-03-18 23:38:50 -07001552}
1553
1554func (c *ndkPrebuiltLibrary) installModule(ctx common.AndroidModuleContext, flags CCFlags) {
1555 // Toolchain libraries do not get installed.
1556}
1557
1558// The NDK STLs are slightly different from the prebuilt system libraries:
1559// * Are not specific to each platform version.
1560// * The libraries are not in a predictable location for each STL.
1561
1562type ndkPrebuiltStl struct {
1563 ndkPrebuiltLibrary
1564}
1565
1566type ndkPrebuiltStaticStl struct {
1567 ndkPrebuiltStl
1568}
1569
1570type ndkPrebuiltSharedStl struct {
1571 ndkPrebuiltStl
1572}
1573
1574func NdkPrebuiltSharedStlFactory() (blueprint.Module, []interface{}) {
1575 module := &ndkPrebuiltSharedStl{}
1576 module.LibraryProperties.BuildShared = true
1577 return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported)
1578}
1579
1580func NdkPrebuiltStaticStlFactory() (blueprint.Module, []interface{}) {
1581 module := &ndkPrebuiltStaticStl{}
1582 module.LibraryProperties.BuildStatic = true
1583 return NewCCLibrary(&module.CCLibrary, module, common.DeviceSupported)
1584}
1585
1586func getNdkStlLibDir(ctx common.AndroidModuleContext, toolchain Toolchain, stl string) string {
1587 gccVersion := toolchain.GccVersion()
1588 var libDir string
1589 switch stl {
1590 case "libstlport":
1591 libDir = "cxx-stl/stlport/libs"
1592 case "libc++":
1593 libDir = "cxx-stl/llvm-libc++/libs"
1594 case "libgnustl":
1595 libDir = fmt.Sprintf("cxx-stl/gnu-libstdc++/%s/libs", gccVersion)
1596 }
1597
1598 if libDir != "" {
Colin Cross1332b002015-04-07 17:11:30 -07001599 ndkSrcRoot := ctx.AConfig().SrcDir() + "/prebuilts/ndk/current/sources"
Dan Albertbe961682015-03-18 23:38:50 -07001600 return fmt.Sprintf("%s/%s/%s", ndkSrcRoot, libDir, ctx.Arch().Abi)
1601 }
1602
1603 ctx.ModuleErrorf("Unknown NDK STL: %s", stl)
1604 return ""
1605}
1606
1607func (c *ndkPrebuiltStl) compileModule(ctx common.AndroidModuleContext, flags CCFlags,
1608 deps CCDeps, objFiles []string) {
1609 // A null build step, but it sets up the output path.
1610 if !strings.HasPrefix(ctx.ModuleName(), "ndk_lib") {
1611 ctx.ModuleErrorf("NDK prebuilts must have an ndk_lib prefixed name")
1612 }
1613
Colin Crossfa138792015-04-24 17:31:52 -07001614 includeDirs := pathtools.PrefixPaths(c.Properties.Export_include_dirs, common.ModuleSrcDir(ctx))
Colin Cross28344522015-04-22 13:07:53 -07001615 c.exportFlags = []string{includeDirsToFlags(includeDirs)}
Dan Albertbe961682015-03-18 23:38:50 -07001616
1617 libName := strings.TrimPrefix(ctx.ModuleName(), "ndk_")
1618 libExt := sharedLibraryExtension
1619 if c.LibraryProperties.BuildStatic {
1620 libExt = staticLibraryExtension
1621 }
1622
1623 stlName := strings.TrimSuffix(libName, "_shared")
1624 stlName = strings.TrimSuffix(stlName, "_static")
1625 libDir := getNdkStlLibDir(ctx, flags.Toolchain, stlName)
1626 c.out = libDir + "/" + libName + libExt
1627}
1628
Colin Cross3f40fa42015-01-30 17:27:36 -08001629func LinkageMutator(mctx blueprint.EarlyMutatorContext) {
Colin Crossed4cf0b2015-03-26 14:43:45 -07001630 if c, ok := mctx.Module().(ccLinkedInterface); ok {
Colin Cross3f40fa42015-01-30 17:27:36 -08001631 var modules []blueprint.Module
Colin Crossed4cf0b2015-03-26 14:43:45 -07001632 if c.buildStatic() && c.buildShared() {
Colin Cross3f40fa42015-01-30 17:27:36 -08001633 modules = mctx.CreateLocalVariations("static", "shared")
Colin Crossed4cf0b2015-03-26 14:43:45 -07001634 modules[0].(ccLinkedInterface).setStatic()
1635 modules[1].(ccLinkedInterface).setShared()
1636 } else if c.buildStatic() {
Colin Cross3f40fa42015-01-30 17:27:36 -08001637 modules = mctx.CreateLocalVariations("static")
Colin Crossed4cf0b2015-03-26 14:43:45 -07001638 modules[0].(ccLinkedInterface).setStatic()
1639 } else if c.buildShared() {
Colin Cross3f40fa42015-01-30 17:27:36 -08001640 modules = mctx.CreateLocalVariations("shared")
Colin Crossed4cf0b2015-03-26 14:43:45 -07001641 modules[0].(ccLinkedInterface).setShared()
Colin Cross3f40fa42015-01-30 17:27:36 -08001642 } else {
Colin Cross97ba0732015-03-23 17:50:24 -07001643 panic(fmt.Errorf("ccLibrary %q not static or shared", mctx.ModuleName()))
Colin Cross3f40fa42015-01-30 17:27:36 -08001644 }
Colin Crossed4cf0b2015-03-26 14:43:45 -07001645
1646 if _, ok := c.(ccLibraryInterface); ok {
1647 reuseFrom := modules[0].(ccLibraryInterface)
1648 for _, m := range modules {
1649 m.(ccLibraryInterface).setReuseFrom(reuseFrom)
Colin Cross3f40fa42015-01-30 17:27:36 -08001650 }
1651 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001652 }
1653}