blob: b97f29b8a6d065821eda4138a79c2f129757607f [file] [log] [blame]
Colin Cross3f40fa42015-01-30 17:27:36 -08001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package cc
16
17// This file generates the final rules for compiling all C/C++. All properties related to
18// compiling should have been translated into builderFlags or another argument to the Transform*
19// functions.
20
21import (
22 "android/soong/common"
Colin Cross0af4b842015-04-30 16:36:18 -070023 "fmt"
24 "runtime"
25 "strconv"
Colin Cross3f40fa42015-01-30 17:27:36 -080026
Colin Cross3f40fa42015-01-30 17:27:36 -080027 "path/filepath"
28 "strings"
Colin Crossed4cf0b2015-03-26 14:43:45 -070029
30 "github.com/google/blueprint"
Colin Cross3f40fa42015-01-30 17:27:36 -080031)
32
33const (
Dan Albertc3144b12015-04-28 18:17:56 -070034 objectExtension = ".o"
Colin Cross3f40fa42015-01-30 17:27:36 -080035 staticLibraryExtension = ".a"
36)
37
38var (
Dan Willemsen34cc69e2015-09-23 15:26:20 -070039 pctx = common.NewPackageContext("android/soong/cc")
Colin Cross3f40fa42015-01-30 17:27:36 -080040
41 cc = pctx.StaticRule("cc",
42 blueprint.RuleParams{
43 Depfile: "${out}.d",
44 Deps: blueprint.DepsGCC,
Dan Willemsene6540452015-10-20 15:21:33 -070045 Command: "$relPwd $ccCmd -c $cFlags -MD -MF ${out}.d -o $out $in",
Dan Willemsenc94a7682015-11-17 15:27:28 -080046 CommandDeps: []string{"$ccCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -080047 Description: "cc $out",
48 },
Dan Willemsen322a0a62015-11-17 15:19:46 -080049 "ccCmd", "cFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080050
51 ld = pctx.StaticRule("ld",
52 blueprint.RuleParams{
Colin Cross7d21c442015-03-30 17:47:53 -070053 Command: "$ldCmd ${ldDirFlags} ${crtBegin} @${out}.rsp " +
Colin Cross28344522015-04-22 13:07:53 -070054 "${libFlags} ${crtEnd} -o ${out} ${ldFlags}",
Dan Willemsenc94a7682015-11-17 15:27:28 -080055 CommandDeps: []string{"$ldCmd"},
Colin Cross7d21c442015-03-30 17:47:53 -070056 Description: "ld $out",
57 Rspfile: "${out}.rsp",
58 RspfileContent: "${in}",
Colin Cross3f40fa42015-01-30 17:27:36 -080059 },
Colin Cross28344522015-04-22 13:07:53 -070060 "ldCmd", "ldDirFlags", "crtBegin", "libFlags", "crtEnd", "ldFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080061
62 partialLd = pctx.StaticRule("partialLd",
63 blueprint.RuleParams{
Colin Cross41280a42015-11-23 14:01:42 -080064 Command: "$ldCmd -nostdlib -Wl,-r ${in} -o ${out} ${ldFlags}",
Dan Willemsenc94a7682015-11-17 15:27:28 -080065 CommandDeps: []string{"$ldCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -080066 Description: "partialLd $out",
67 },
Colin Cross41280a42015-11-23 14:01:42 -080068 "ldCmd", "ldFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080069
70 ar = pctx.StaticRule("ar",
71 blueprint.RuleParams{
Colin Cross7d21c442015-03-30 17:47:53 -070072 Command: "rm -f ${out} && $arCmd $arFlags $out @${out}.rsp",
Dan Willemsenc94a7682015-11-17 15:27:28 -080073 CommandDeps: []string{"$arCmd"},
Colin Cross7d21c442015-03-30 17:47:53 -070074 Description: "ar $out",
75 Rspfile: "${out}.rsp",
76 RspfileContent: "${in}",
Colin Cross3f40fa42015-01-30 17:27:36 -080077 },
78 "arCmd", "arFlags")
79
Colin Cross0af4b842015-04-30 16:36:18 -070080 darwinAr = pctx.StaticRule("darwinAr",
81 blueprint.RuleParams{
Colin Crossb8ecdfe2016-05-03 15:10:29 -070082 Command: "rm -f ${out} && ${macArPath} $arFlags $out $in",
83 CommandDeps: []string{"${macArPath}"},
Colin Cross0af4b842015-04-30 16:36:18 -070084 Description: "ar $out",
85 },
Colin Crossb8ecdfe2016-05-03 15:10:29 -070086 "arFlags")
Colin Cross0af4b842015-04-30 16:36:18 -070087
88 darwinAppendAr = pctx.StaticRule("darwinAppendAr",
89 blueprint.RuleParams{
Colin Crossb8ecdfe2016-05-03 15:10:29 -070090 Command: "cp -f ${inAr} ${out}.tmp && ${macArPath} $arFlags ${out}.tmp $in && mv ${out}.tmp ${out}",
91 CommandDeps: []string{"${macArPath}"},
Colin Cross0af4b842015-04-30 16:36:18 -070092 Description: "ar $out",
93 },
Colin Crossb8ecdfe2016-05-03 15:10:29 -070094 "arFlags", "inAr")
95
96 darwinStrip = pctx.StaticRule("darwinStrip",
97 blueprint.RuleParams{
98 Command: "${macStripPath} -u -r -o $out $in",
99 CommandDeps: []string{"${macStripPath}"},
100 Description: "strip $out",
101 })
Colin Cross0af4b842015-04-30 16:36:18 -0700102
Colin Crossbfae8852015-03-26 14:44:11 -0700103 prefixSymbols = pctx.StaticRule("prefixSymbols",
104 blueprint.RuleParams{
105 Command: "$objcopyCmd --prefix-symbols=${prefix} ${in} ${out}",
Dan Willemsenc94a7682015-11-17 15:27:28 -0800106 CommandDeps: []string{"$objcopyCmd"},
Colin Crossbfae8852015-03-26 14:44:11 -0700107 Description: "prefixSymbols $out",
108 },
109 "objcopyCmd", "prefix")
110
Colin Cross665dce92016-04-28 14:50:03 -0700111 stripPath = pctx.SourcePathVariable("stripPath", "build/soong/scripts/strip.sh")
112
113 strip = pctx.StaticRule("strip",
114 blueprint.RuleParams{
115 Depfile: "${out}.d",
116 Deps: blueprint.DepsGCC,
117 Command: "CROSS_COMPILE=$crossCompile $stripPath ${args} -i ${in} -o ${out} -d ${out}.d",
118 CommandDeps: []string{"$stripPath"},
119 Description: "strip $out",
120 },
121 "args", "crossCompile")
122
Colin Cross14747412016-04-27 16:10:38 -0700123 copyGccLibPath = pctx.SourcePathVariable("copyGccLibPath", "build/soong/scripts/copygcclib.sh")
Colin Cross3f40fa42015-01-30 17:27:36 -0800124
125 copyGccLib = pctx.StaticRule("copyGccLib",
126 blueprint.RuleParams{
127 Depfile: "${out}.d",
128 Deps: blueprint.DepsGCC,
129 Command: "$copyGccLibPath $out $ccCmd $cFlags -print-file-name=${libName}",
Dan Willemsenc94a7682015-11-17 15:27:28 -0800130 CommandDeps: []string{"$copyGccLibPath", "$ccCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -0800131 Description: "copy gcc $out",
132 },
133 "ccCmd", "cFlags", "libName")
134)
135
Dan Willemsen322a0a62015-11-17 15:19:46 -0800136func init() {
137 // We run gcc/clang with PWD=/proc/self/cwd to remove $TOP from the
138 // debug output. That way two builds in two different directories will
139 // create the same output.
140 if runtime.GOOS != "darwin" {
141 pctx.StaticVariable("relPwd", "PWD=/proc/self/cwd")
142 } else {
143 // Darwin doesn't have /proc
144 pctx.StaticVariable("relPwd", "")
145 }
146}
147
Colin Cross3f40fa42015-01-30 17:27:36 -0800148type builderFlags struct {
149 globalFlags string
150 asFlags string
151 cFlags string
152 conlyFlags string
153 cppFlags string
154 ldFlags string
Colin Cross16b23492016-01-06 14:41:07 -0800155 libFlags string
Colin Cross581c1892015-04-07 16:50:10 -0700156 yaccFlags string
Colin Cross3f40fa42015-01-30 17:27:36 -0800157 nocrt bool
Colin Cross97ba0732015-03-23 17:50:24 -0700158 toolchain Toolchain
Colin Cross3f40fa42015-01-30 17:27:36 -0800159 clang bool
Colin Cross665dce92016-04-28 14:50:03 -0700160
161 stripKeepSymbols bool
162 stripKeepMiniDebugInfo bool
163 stripAddGnuDebuglink bool
Colin Cross3f40fa42015-01-30 17:27:36 -0800164}
165
166// Generate rules for compiling multiple .c, .cpp, or .S files to individual .o files
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700167func TransformSourceToObj(ctx common.AndroidModuleContext, subdir string, srcFiles common.Paths,
168 flags builderFlags, deps common.Paths) (objFiles common.Paths) {
Colin Cross581c1892015-04-07 16:50:10 -0700169
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700170 objFiles = make(common.Paths, len(srcFiles))
Colin Cross3f40fa42015-01-30 17:27:36 -0800171
172 cflags := flags.globalFlags + " " + flags.cFlags + " " + flags.conlyFlags
173 cppflags := flags.globalFlags + " " + flags.cFlags + " " + flags.cppFlags
174 asflags := flags.globalFlags + " " + flags.asFlags
175
Dan Willemsenbe03f342016-03-03 17:21:04 -0800176 if flags.clang {
177 cflags += " ${noOverrideClangGlobalCflags}"
178 cppflags += " ${noOverrideClangGlobalCflags}"
179 } else {
180 cflags += " ${noOverrideGlobalCflags}"
181 cppflags += " ${noOverrideGlobalCflags}"
182 }
183
Colin Cross3f40fa42015-01-30 17:27:36 -0800184 for i, srcFile := range srcFiles {
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700185 objFile := common.ObjPathWithExt(ctx, srcFile, subdir, "o")
Colin Cross3f40fa42015-01-30 17:27:36 -0800186
187 objFiles[i] = objFile
188
189 var moduleCflags string
190 var ccCmd string
191
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700192 switch srcFile.Ext() {
Colin Cross3f40fa42015-01-30 17:27:36 -0800193 case ".S", ".s":
194 ccCmd = "gcc"
195 moduleCflags = asflags
196 case ".c":
197 ccCmd = "gcc"
198 moduleCflags = cflags
199 case ".cpp", ".cc":
200 ccCmd = "g++"
201 moduleCflags = cppflags
202 default:
203 ctx.ModuleErrorf("File %s has unknown extension", srcFile)
204 continue
205 }
206
207 if flags.clang {
208 switch ccCmd {
209 case "gcc":
210 ccCmd = "clang"
211 case "g++":
212 ccCmd = "clang++"
213 default:
214 panic("unrecoginzied ccCmd")
215 }
216
Colin Cross16b23492016-01-06 14:41:07 -0800217 ccCmd = "${clangBin}/" + ccCmd
Colin Cross3f40fa42015-01-30 17:27:36 -0800218 } else {
219 ccCmd = gccCmd(flags.toolchain, ccCmd)
220 }
221
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700222 ctx.ModuleBuild(pctx, common.ModuleBuildParams{
Colin Cross3f40fa42015-01-30 17:27:36 -0800223 Rule: cc,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700224 Output: objFile,
225 Input: srcFile,
Dan Willemsenb40aab62016-04-20 14:21:14 -0700226 OrderOnly: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800227 Args: map[string]string{
Colin Cross28344522015-04-22 13:07:53 -0700228 "cFlags": moduleCflags,
229 "ccCmd": ccCmd,
Colin Cross3f40fa42015-01-30 17:27:36 -0800230 },
231 })
232 }
233
234 return objFiles
235}
236
237// Generate a rule for compiling multiple .o files to a static library (.a)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700238func TransformObjToStaticLib(ctx common.AndroidModuleContext, objFiles common.Paths,
239 flags builderFlags, outputFile common.ModuleOutPath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800240
241 arCmd := gccCmd(flags.toolchain, "ar")
242 arFlags := "crsPD"
243
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700244 ctx.ModuleBuild(pctx, common.ModuleBuildParams{
245 Rule: ar,
246 Output: outputFile,
247 Inputs: objFiles,
Colin Cross3f40fa42015-01-30 17:27:36 -0800248 Args: map[string]string{
249 "arFlags": arFlags,
250 "arCmd": arCmd,
251 },
252 })
253}
254
Colin Cross0af4b842015-04-30 16:36:18 -0700255// Generate a rule for compiling multiple .o files to a static library (.a) on
256// darwin. The darwin ar tool doesn't support @file for list files, and has a
257// very small command line length limit, so we have to split the ar into multiple
258// steps, each appending to the previous one.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700259func TransformDarwinObjToStaticLib(ctx common.AndroidModuleContext, objFiles common.Paths,
260 flags builderFlags, outputPath common.ModuleOutPath) {
Colin Cross0af4b842015-04-30 16:36:18 -0700261
Colin Cross0af4b842015-04-30 16:36:18 -0700262 arFlags := "cqs"
263
264 // ARG_MAX on darwin is 262144, use half that to be safe
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700265 objFilesLists, err := splitListForSize(objFiles.Strings(), 131072)
Colin Cross0af4b842015-04-30 16:36:18 -0700266 if err != nil {
267 ctx.ModuleErrorf("%s", err.Error())
268 }
269
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700270 outputFile := outputPath.String()
271
Colin Cross0af4b842015-04-30 16:36:18 -0700272 var in, out string
273 for i, l := range objFilesLists {
274 in = out
275 out = outputFile
276 if i != len(objFilesLists)-1 {
277 out += "." + strconv.Itoa(i)
278 }
279
280 if in == "" {
281 ctx.Build(pctx, blueprint.BuildParams{
282 Rule: darwinAr,
283 Outputs: []string{out},
284 Inputs: l,
285 Args: map[string]string{
286 "arFlags": arFlags,
Colin Cross0af4b842015-04-30 16:36:18 -0700287 },
288 })
289 } else {
290 ctx.Build(pctx, blueprint.BuildParams{
291 Rule: darwinAppendAr,
292 Outputs: []string{out},
293 Inputs: l,
294 Implicits: []string{in},
295 Args: map[string]string{
296 "arFlags": arFlags,
Colin Cross0af4b842015-04-30 16:36:18 -0700297 "inAr": in,
298 },
299 })
300 }
301 }
302}
303
Colin Cross3f40fa42015-01-30 17:27:36 -0800304// Generate a rule for compiling multiple .o files, plus static libraries, whole static libraries,
305// and shared libraires, to a shared library (.so) or dynamic executable
306func TransformObjToDynamicBinary(ctx common.AndroidModuleContext,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700307 objFiles, sharedLibs, staticLibs, lateStaticLibs, wholeStaticLibs, deps common.Paths,
308 crtBegin, crtEnd common.OptionalPath, groupLate bool, flags builderFlags, outputFile common.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800309
310 var ldCmd string
311 if flags.clang {
Colin Cross16b23492016-01-06 14:41:07 -0800312 ldCmd = "${clangBin}/clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800313 } else {
314 ldCmd = gccCmd(flags.toolchain, "g++")
315 }
316
317 var ldDirs []string
318 var libFlagsList []string
319
Colin Cross16b23492016-01-06 14:41:07 -0800320 if len(flags.libFlags) > 0 {
321 libFlagsList = append(libFlagsList, flags.libFlags)
322 }
323
Colin Cross3f40fa42015-01-30 17:27:36 -0800324 if len(wholeStaticLibs) > 0 {
Dan Willemsen490fd492015-11-24 17:53:15 -0800325 if ctx.Host() && ctx.Darwin() {
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700326 libFlagsList = append(libFlagsList, common.JoinWithPrefix(wholeStaticLibs.Strings(), "-force_load "))
Colin Cross0af4b842015-04-30 16:36:18 -0700327 } else {
328 libFlagsList = append(libFlagsList, "-Wl,--whole-archive ")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700329 libFlagsList = append(libFlagsList, wholeStaticLibs.Strings()...)
Colin Cross0af4b842015-04-30 16:36:18 -0700330 libFlagsList = append(libFlagsList, "-Wl,--no-whole-archive ")
331 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800332 }
333
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700334 libFlagsList = append(libFlagsList, staticLibs.Strings()...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800335
Dan Willemsenedc385f2015-07-08 13:02:23 -0700336 if groupLate && len(lateStaticLibs) > 0 {
337 libFlagsList = append(libFlagsList, "-Wl,--start-group")
338 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700339 libFlagsList = append(libFlagsList, lateStaticLibs.Strings()...)
Dan Willemsenedc385f2015-07-08 13:02:23 -0700340 if groupLate && len(lateStaticLibs) > 0 {
341 libFlagsList = append(libFlagsList, "-Wl,--end-group")
342 }
343
Colin Cross3f40fa42015-01-30 17:27:36 -0800344 for _, lib := range sharedLibs {
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700345 dir, file := filepath.Split(lib.String())
Colin Cross3f40fa42015-01-30 17:27:36 -0800346 if !strings.HasPrefix(file, "lib") {
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700347 panic("shared library " + lib.String() + " does not start with lib")
Colin Cross3f40fa42015-01-30 17:27:36 -0800348 }
Dan Willemsen490fd492015-11-24 17:53:15 -0800349 if !strings.HasSuffix(file, flags.toolchain.ShlibSuffix()) {
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700350 panic("shared library " + lib.String() + " does not end with " + flags.toolchain.ShlibSuffix())
Colin Cross3f40fa42015-01-30 17:27:36 -0800351 }
352 libFlagsList = append(libFlagsList,
Dan Willemsen490fd492015-11-24 17:53:15 -0800353 "-l"+strings.TrimSuffix(strings.TrimPrefix(file, "lib"), flags.toolchain.ShlibSuffix()))
Colin Cross3f40fa42015-01-30 17:27:36 -0800354 ldDirs = append(ldDirs, dir)
355 }
356
Colin Cross3f40fa42015-01-30 17:27:36 -0800357 deps = append(deps, sharedLibs...)
358 deps = append(deps, staticLibs...)
Colin Cross3075ad02015-03-17 10:47:08 -0700359 deps = append(deps, lateStaticLibs...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800360 deps = append(deps, wholeStaticLibs...)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700361 if crtBegin.Valid() {
362 deps = append(deps, crtBegin.Path(), crtEnd.Path())
Colin Cross3f40fa42015-01-30 17:27:36 -0800363 }
364
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700365 ctx.ModuleBuild(pctx, common.ModuleBuildParams{
Colin Cross3f40fa42015-01-30 17:27:36 -0800366 Rule: ld,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700367 Output: outputFile,
Colin Cross3f40fa42015-01-30 17:27:36 -0800368 Inputs: objFiles,
369 Implicits: deps,
370 Args: map[string]string{
371 "ldCmd": ldCmd,
372 "ldDirFlags": ldDirsToFlags(ldDirs),
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700373 "crtBegin": crtBegin.String(),
Colin Cross3f40fa42015-01-30 17:27:36 -0800374 "libFlags": strings.Join(libFlagsList, " "),
375 "ldFlags": flags.ldFlags,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700376 "crtEnd": crtEnd.String(),
Colin Cross3f40fa42015-01-30 17:27:36 -0800377 },
378 })
379}
380
381// Generate a rule for compiling multiple .o files to a .o using ld partial linking
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700382func TransformObjsToObj(ctx common.AndroidModuleContext, objFiles common.Paths,
383 flags builderFlags, outputFile common.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800384
Colin Cross41280a42015-11-23 14:01:42 -0800385 var ldCmd string
386 if flags.clang {
Colin Cross16b23492016-01-06 14:41:07 -0800387 ldCmd = "${clangBin}clang++"
Colin Cross41280a42015-11-23 14:01:42 -0800388 } else {
389 ldCmd = gccCmd(flags.toolchain, "g++")
390 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800391
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700392 ctx.ModuleBuild(pctx, common.ModuleBuildParams{
393 Rule: partialLd,
394 Output: outputFile,
395 Inputs: objFiles,
Colin Cross3f40fa42015-01-30 17:27:36 -0800396 Args: map[string]string{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700397 "ldCmd": ldCmd,
Colin Cross41280a42015-11-23 14:01:42 -0800398 "ldFlags": flags.ldFlags,
Colin Cross3f40fa42015-01-30 17:27:36 -0800399 },
400 })
401}
402
Colin Crossbfae8852015-03-26 14:44:11 -0700403// Generate a rule for runing objcopy --prefix-symbols on a binary
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700404func TransformBinaryPrefixSymbols(ctx common.AndroidModuleContext, prefix string, inputFile common.Path,
405 flags builderFlags, outputFile common.WritablePath) {
Colin Crossbfae8852015-03-26 14:44:11 -0700406
407 objcopyCmd := gccCmd(flags.toolchain, "objcopy")
408
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700409 ctx.ModuleBuild(pctx, common.ModuleBuildParams{
410 Rule: prefixSymbols,
411 Output: outputFile,
412 Input: inputFile,
Colin Crossbfae8852015-03-26 14:44:11 -0700413 Args: map[string]string{
414 "objcopyCmd": objcopyCmd,
415 "prefix": prefix,
416 },
417 })
418}
419
Colin Cross665dce92016-04-28 14:50:03 -0700420func TransformStrip(ctx common.AndroidModuleContext, inputFile common.Path,
421 outputFile common.WritablePath, flags builderFlags) {
422
423 crossCompile := gccCmd(flags.toolchain, "")
424 args := ""
425 if flags.stripAddGnuDebuglink {
426 args += " --add-gnu-debuglink"
427 }
428 if flags.stripKeepMiniDebugInfo {
429 args += " --keep-mini-debug-info"
430 }
431 if flags.stripKeepSymbols {
432 args += " --keep-symbols"
433 }
434
435 ctx.ModuleBuild(pctx, common.ModuleBuildParams{
436 Rule: strip,
437 Output: outputFile,
438 Input: inputFile,
439 Args: map[string]string{
440 "crossCompile": crossCompile,
441 "args": args,
442 },
443 })
444}
445
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700446func TransformDarwinStrip(ctx common.AndroidModuleContext, inputFile common.Path,
447 outputFile common.WritablePath) {
448
449 ctx.ModuleBuild(pctx, common.ModuleBuildParams{
450 Rule: darwinStrip,
451 Output: outputFile,
452 Input: inputFile,
453 })
454}
455
Colin Cross3f40fa42015-01-30 17:27:36 -0800456func CopyGccLib(ctx common.AndroidModuleContext, libName string,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700457 flags builderFlags, outputFile common.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800458
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700459 ctx.ModuleBuild(pctx, common.ModuleBuildParams{
460 Rule: copyGccLib,
461 Output: outputFile,
Colin Cross3f40fa42015-01-30 17:27:36 -0800462 Args: map[string]string{
463 "ccCmd": gccCmd(flags.toolchain, "gcc"),
464 "cFlags": flags.globalFlags,
465 "libName": libName,
466 },
467 })
468}
469
Colin Cross97ba0732015-03-23 17:50:24 -0700470func gccCmd(toolchain Toolchain, cmd string) string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800471 return filepath.Join(toolchain.GccRoot(), "bin", toolchain.GccTriple()+"-"+cmd)
472}
Colin Cross0af4b842015-04-30 16:36:18 -0700473
474func splitListForSize(list []string, limit int) (lists [][]string, err error) {
475 var i int
476
477 start := 0
478 bytes := 0
479 for i = range list {
480 l := len(list[i])
481 if l > limit {
482 return nil, fmt.Errorf("list element greater than size limit (%d)", limit)
483 }
484 if bytes+l > limit {
485 lists = append(lists, list[start:i])
486 start = i
487 bytes = 0
488 }
489 bytes += l + 1 // count a space between each list element
490 }
491
492 lists = append(lists, list[start:])
493
494 totalLen := 0
495 for _, l := range lists {
496 totalLen += len(l)
497 }
498 if totalLen != len(list) {
499 panic(fmt.Errorf("Failed breaking up list, %d != %d", len(list), totalLen))
500 }
501 return lists, nil
502}