blob: ee53f41d610478ef3faa89b85a6b96bbabc311e2 [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 (
Colin Cross0af4b842015-04-30 16:36:18 -070022 "fmt"
Colin Crossb98c8b02016-07-29 13:44:28 -070023 "path/filepath"
Colin Cross0af4b842015-04-30 16:36:18 -070024 "runtime"
25 "strconv"
Colin Cross3f40fa42015-01-30 17:27:36 -080026 "strings"
Colin Crossed4cf0b2015-03-26 14:43:45 -070027
28 "github.com/google/blueprint"
Colin Crossb98c8b02016-07-29 13:44:28 -070029
30 "android/soong/android"
31 "android/soong/cc/config"
Colin Cross3f40fa42015-01-30 17:27:36 -080032)
33
34const (
Dan Albertc3144b12015-04-28 18:17:56 -070035 objectExtension = ".o"
Colin Cross3f40fa42015-01-30 17:27:36 -080036 staticLibraryExtension = ".a"
37)
38
39var (
Colin Cross635c3b02016-05-18 15:37:25 -070040 pctx = android.NewPackageContext("android/soong/cc")
Colin Cross3f40fa42015-01-30 17:27:36 -080041
Colin Cross9d45bb72016-08-29 16:14:13 -070042 cc = pctx.AndroidGomaStaticRule("cc",
Colin Cross3f40fa42015-01-30 17:27:36 -080043 blueprint.RuleParams{
44 Depfile: "${out}.d",
45 Deps: blueprint.DepsGCC,
Alistair Strachan777475c2016-08-26 12:55:49 -070046 Command: "$relPwd ${config.CcWrapper}$ccCmd -c $cFlags -MD -MF ${out}.d -o $out $in",
Dan Willemsenc94a7682015-11-17 15:27:28 -080047 CommandDeps: []string{"$ccCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -080048 Description: "cc $out",
49 },
Dan Willemsen322a0a62015-11-17 15:19:46 -080050 "ccCmd", "cFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080051
Colin Cross9d45bb72016-08-29 16:14:13 -070052 ld = pctx.AndroidStaticRule("ld",
Colin Cross3f40fa42015-01-30 17:27:36 -080053 blueprint.RuleParams{
Dan Albertce2b8392016-07-21 13:16:49 -070054 Command: "$ldCmd ${crtBegin} @${out}.rsp " +
Colin Cross28344522015-04-22 13:07:53 -070055 "${libFlags} ${crtEnd} -o ${out} ${ldFlags}",
Dan Willemsenc94a7682015-11-17 15:27:28 -080056 CommandDeps: []string{"$ldCmd"},
Colin Cross7d21c442015-03-30 17:47:53 -070057 Description: "ld $out",
58 Rspfile: "${out}.rsp",
59 RspfileContent: "${in}",
Colin Cross3f40fa42015-01-30 17:27:36 -080060 },
Dan Albertce2b8392016-07-21 13:16:49 -070061 "ldCmd", "crtBegin", "libFlags", "crtEnd", "ldFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080062
Colin Cross9d45bb72016-08-29 16:14:13 -070063 partialLd = pctx.AndroidStaticRule("partialLd",
Colin Cross3f40fa42015-01-30 17:27:36 -080064 blueprint.RuleParams{
Colin Cross41280a42015-11-23 14:01:42 -080065 Command: "$ldCmd -nostdlib -Wl,-r ${in} -o ${out} ${ldFlags}",
Dan Willemsenc94a7682015-11-17 15:27:28 -080066 CommandDeps: []string{"$ldCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -080067 Description: "partialLd $out",
68 },
Colin Cross41280a42015-11-23 14:01:42 -080069 "ldCmd", "ldFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080070
Colin Cross9d45bb72016-08-29 16:14:13 -070071 ar = pctx.AndroidStaticRule("ar",
Colin Cross3f40fa42015-01-30 17:27:36 -080072 blueprint.RuleParams{
Colin Cross7d21c442015-03-30 17:47:53 -070073 Command: "rm -f ${out} && $arCmd $arFlags $out @${out}.rsp",
Dan Willemsenc94a7682015-11-17 15:27:28 -080074 CommandDeps: []string{"$arCmd"},
Colin Cross7d21c442015-03-30 17:47:53 -070075 Description: "ar $out",
76 Rspfile: "${out}.rsp",
77 RspfileContent: "${in}",
Colin Cross3f40fa42015-01-30 17:27:36 -080078 },
79 "arCmd", "arFlags")
80
Colin Cross9d45bb72016-08-29 16:14:13 -070081 darwinAr = pctx.AndroidStaticRule("darwinAr",
Colin Cross0af4b842015-04-30 16:36:18 -070082 blueprint.RuleParams{
Colin Crossb98c8b02016-07-29 13:44:28 -070083 Command: "rm -f ${out} && ${config.MacArPath} $arFlags $out $in",
84 CommandDeps: []string{"${config.MacArPath}"},
Colin Cross0af4b842015-04-30 16:36:18 -070085 Description: "ar $out",
86 },
Colin Crossb8ecdfe2016-05-03 15:10:29 -070087 "arFlags")
Colin Cross0af4b842015-04-30 16:36:18 -070088
Colin Cross9d45bb72016-08-29 16:14:13 -070089 darwinAppendAr = pctx.AndroidStaticRule("darwinAppendAr",
Colin Cross0af4b842015-04-30 16:36:18 -070090 blueprint.RuleParams{
Colin Crossb98c8b02016-07-29 13:44:28 -070091 Command: "cp -f ${inAr} ${out}.tmp && ${config.MacArPath} $arFlags ${out}.tmp $in && mv ${out}.tmp ${out}",
92 CommandDeps: []string{"${config.MacArPath}", "${inAr}"},
Colin Cross0af4b842015-04-30 16:36:18 -070093 Description: "ar $out",
94 },
Colin Crossb8ecdfe2016-05-03 15:10:29 -070095 "arFlags", "inAr")
96
Colin Cross9d45bb72016-08-29 16:14:13 -070097 darwinStrip = pctx.AndroidStaticRule("darwinStrip",
Colin Crossb8ecdfe2016-05-03 15:10:29 -070098 blueprint.RuleParams{
Colin Crossa24166b2016-08-01 15:42:38 -070099 Command: "${config.MacStripPath} -u -r -o $out $in",
100 CommandDeps: []string{"${config.MacStripPath}"},
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700101 Description: "strip $out",
102 })
Colin Cross0af4b842015-04-30 16:36:18 -0700103
Colin Cross9d45bb72016-08-29 16:14:13 -0700104 prefixSymbols = pctx.AndroidStaticRule("prefixSymbols",
Colin Crossbfae8852015-03-26 14:44:11 -0700105 blueprint.RuleParams{
106 Command: "$objcopyCmd --prefix-symbols=${prefix} ${in} ${out}",
Dan Willemsenc94a7682015-11-17 15:27:28 -0800107 CommandDeps: []string{"$objcopyCmd"},
Colin Crossbfae8852015-03-26 14:44:11 -0700108 Description: "prefixSymbols $out",
109 },
110 "objcopyCmd", "prefix")
111
Colin Cross665dce92016-04-28 14:50:03 -0700112 stripPath = pctx.SourcePathVariable("stripPath", "build/soong/scripts/strip.sh")
113
Colin Cross9d45bb72016-08-29 16:14:13 -0700114 strip = pctx.AndroidStaticRule("strip",
Colin Cross665dce92016-04-28 14:50:03 -0700115 blueprint.RuleParams{
116 Depfile: "${out}.d",
117 Deps: blueprint.DepsGCC,
118 Command: "CROSS_COMPILE=$crossCompile $stripPath ${args} -i ${in} -o ${out} -d ${out}.d",
119 CommandDeps: []string{"$stripPath"},
120 Description: "strip $out",
121 },
122 "args", "crossCompile")
123
Colin Cross9d45bb72016-08-29 16:14:13 -0700124 emptyFile = pctx.AndroidStaticRule("emptyFile",
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700125 blueprint.RuleParams{
126 Command: "rm -f $out && touch $out",
127 Description: "empty file $out",
128 })
129
Colin Cross14747412016-04-27 16:10:38 -0700130 copyGccLibPath = pctx.SourcePathVariable("copyGccLibPath", "build/soong/scripts/copygcclib.sh")
Colin Cross3f40fa42015-01-30 17:27:36 -0800131
Colin Cross9d45bb72016-08-29 16:14:13 -0700132 copyGccLib = pctx.AndroidStaticRule("copyGccLib",
Colin Cross3f40fa42015-01-30 17:27:36 -0800133 blueprint.RuleParams{
134 Depfile: "${out}.d",
135 Deps: blueprint.DepsGCC,
136 Command: "$copyGccLibPath $out $ccCmd $cFlags -print-file-name=${libName}",
Dan Willemsenc94a7682015-11-17 15:27:28 -0800137 CommandDeps: []string{"$copyGccLibPath", "$ccCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -0800138 Description: "copy gcc $out",
139 },
140 "ccCmd", "cFlags", "libName")
Colin Cross26c34ed2016-09-30 17:10:16 -0700141
142 tocPath = pctx.SourcePathVariable("tocPath", "build/soong/scripts/toc.sh")
143
144 toc = pctx.AndroidStaticRule("toc",
145 blueprint.RuleParams{
146 Depfile: "${out}.d",
147 Deps: blueprint.DepsGCC,
148 Command: "CROSS_COMPILE=$crossCompile $tocPath -i ${in} -o ${out} -d ${out}.d",
149 CommandDeps: []string{"$tocPath"},
150 Restat: true,
151 },
152 "crossCompile")
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700153
154 clangTidy = pctx.AndroidStaticRule("clangTidy",
155 blueprint.RuleParams{
156 Command: "rm -f $out && ${config.ClangBin}/clang-tidy $tidyFlags $in -- $cFlags && touch $out",
157 CommandDeps: []string{"${config.ClangBin}/clang-tidy"},
158 Description: "tidy $out",
159 },
160 "cFlags", "tidyFlags")
Colin Cross91e90042016-12-02 17:13:24 -0800161
162 yasmCmd = pctx.SourcePathVariable("yasmCmd", "prebuilts/misc/${config.HostPrebuiltTag}/yasm/yasm")
163
164 yasm = pctx.AndroidStaticRule("yasm",
165 blueprint.RuleParams{
166 Command: "$yasmCmd $asFlags -o $out $in",
167 CommandDeps: []string{"$yasmCmd"},
168 Description: "yasm $out",
169 },
170 "asFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -0800171)
172
Dan Willemsen322a0a62015-11-17 15:19:46 -0800173func init() {
174 // We run gcc/clang with PWD=/proc/self/cwd to remove $TOP from the
175 // debug output. That way two builds in two different directories will
176 // create the same output.
177 if runtime.GOOS != "darwin" {
178 pctx.StaticVariable("relPwd", "PWD=/proc/self/cwd")
179 } else {
180 // Darwin doesn't have /proc
181 pctx.StaticVariable("relPwd", "")
182 }
183}
184
Colin Cross3f40fa42015-01-30 17:27:36 -0800185type builderFlags struct {
186 globalFlags string
187 asFlags string
188 cFlags string
189 conlyFlags string
190 cppFlags string
191 ldFlags string
Colin Cross16b23492016-01-06 14:41:07 -0800192 libFlags string
Colin Cross581c1892015-04-07 16:50:10 -0700193 yaccFlags string
Colin Cross0c461f12016-10-20 16:11:43 -0700194 protoFlags string
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700195 tidyFlags string
Colin Cross91e90042016-12-02 17:13:24 -0800196 yasmFlags string
Colin Crossb98c8b02016-07-29 13:44:28 -0700197 toolchain config.Toolchain
Colin Cross3f40fa42015-01-30 17:27:36 -0800198 clang bool
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700199 tidy bool
Colin Cross665dce92016-04-28 14:50:03 -0700200
Colin Cross18c0c5a2016-12-01 14:45:23 -0800201 groupStaticLibs bool
202
Colin Cross665dce92016-04-28 14:50:03 -0700203 stripKeepSymbols bool
204 stripKeepMiniDebugInfo bool
205 stripAddGnuDebuglink bool
Colin Cross3f40fa42015-01-30 17:27:36 -0800206}
207
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700208type Objects struct {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700209 objFiles android.Paths
210 tidyFiles android.Paths
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700211}
212
213func (a Objects) Copy() Objects {
214 return Objects{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700215 objFiles: append(android.Paths{}, a.objFiles...),
216 tidyFiles: append(android.Paths{}, a.tidyFiles...),
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700217 }
218}
219
220func (a Objects) Append(b Objects) Objects {
221 return Objects{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700222 objFiles: append(a.objFiles, b.objFiles...),
223 tidyFiles: append(a.tidyFiles, b.tidyFiles...),
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700224 }
225}
226
Colin Cross3f40fa42015-01-30 17:27:36 -0800227// Generate rules for compiling multiple .c, .cpp, or .S files to individual .o files
Colin Cross635c3b02016-05-18 15:37:25 -0700228func TransformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles android.Paths,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700229 flags builderFlags, deps android.Paths) Objects {
Colin Cross581c1892015-04-07 16:50:10 -0700230
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700231 objFiles := make(android.Paths, len(srcFiles))
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700232 var tidyFiles android.Paths
233 if flags.tidy && flags.clang {
234 tidyFiles = make(android.Paths, 0, len(srcFiles))
235 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800236
237 cflags := flags.globalFlags + " " + flags.cFlags + " " + flags.conlyFlags
238 cppflags := flags.globalFlags + " " + flags.cFlags + " " + flags.cppFlags
239 asflags := flags.globalFlags + " " + flags.asFlags
240
Dan Willemsenbe03f342016-03-03 17:21:04 -0800241 if flags.clang {
Colin Crossb98c8b02016-07-29 13:44:28 -0700242 cflags += " ${config.NoOverrideClangGlobalCflags}"
243 cppflags += " ${config.NoOverrideClangGlobalCflags}"
Dan Willemsenbe03f342016-03-03 17:21:04 -0800244 } else {
Colin Crossb98c8b02016-07-29 13:44:28 -0700245 cflags += " ${config.NoOverrideGlobalCflags}"
246 cppflags += " ${config.NoOverrideGlobalCflags}"
Dan Willemsenbe03f342016-03-03 17:21:04 -0800247 }
248
Colin Cross3f40fa42015-01-30 17:27:36 -0800249 for i, srcFile := range srcFiles {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700250 objFile := android.ObjPathWithExt(ctx, subdir, srcFile, "o")
Colin Cross3f40fa42015-01-30 17:27:36 -0800251
252 objFiles[i] = objFile
253
Colin Cross91e90042016-12-02 17:13:24 -0800254 if srcFile.Ext() == ".asm" {
255 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
256 Rule: yasm,
257 Output: objFile,
258 Input: srcFile,
259 OrderOnly: deps,
260 Args: map[string]string{
261 "asFlags": flags.yasmFlags,
262 },
263 })
264 continue
265 }
266
Colin Cross3f40fa42015-01-30 17:27:36 -0800267 var moduleCflags string
268 var ccCmd string
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700269 tidy := flags.tidy && flags.clang
Colin Cross3f40fa42015-01-30 17:27:36 -0800270
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700271 switch srcFile.Ext() {
Colin Cross3f40fa42015-01-30 17:27:36 -0800272 case ".S", ".s":
273 ccCmd = "gcc"
274 moduleCflags = asflags
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700275 tidy = false
Colin Cross3f40fa42015-01-30 17:27:36 -0800276 case ".c":
277 ccCmd = "gcc"
278 moduleCflags = cflags
Colin Cross9978ffe2016-12-01 15:31:22 -0800279 case ".cpp", ".cc", ".mm":
Colin Cross3f40fa42015-01-30 17:27:36 -0800280 ccCmd = "g++"
281 moduleCflags = cppflags
282 default:
283 ctx.ModuleErrorf("File %s has unknown extension", srcFile)
284 continue
285 }
286
287 if flags.clang {
288 switch ccCmd {
289 case "gcc":
290 ccCmd = "clang"
291 case "g++":
292 ccCmd = "clang++"
293 default:
294 panic("unrecoginzied ccCmd")
295 }
296
Colin Crossb98c8b02016-07-29 13:44:28 -0700297 ccCmd = "${config.ClangBin}/" + ccCmd
Colin Cross3f40fa42015-01-30 17:27:36 -0800298 } else {
299 ccCmd = gccCmd(flags.toolchain, ccCmd)
300 }
301
Colin Cross635c3b02016-05-18 15:37:25 -0700302 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Colin Cross3f40fa42015-01-30 17:27:36 -0800303 Rule: cc,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700304 Output: objFile,
305 Input: srcFile,
Dan Willemsenb40aab62016-04-20 14:21:14 -0700306 OrderOnly: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800307 Args: map[string]string{
Colin Cross28344522015-04-22 13:07:53 -0700308 "cFlags": moduleCflags,
309 "ccCmd": ccCmd,
Colin Cross3f40fa42015-01-30 17:27:36 -0800310 },
311 })
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700312
313 if tidy {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700314 tidyFile := android.ObjPathWithExt(ctx, subdir, srcFile, "tidy")
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700315 tidyFiles = append(tidyFiles, tidyFile)
316
317 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
318 Rule: clangTidy,
319 Output: tidyFile,
320 Input: srcFile,
321 // We must depend on objFile, since clang-tidy doesn't
322 // support exporting dependencies.
323 Implicit: objFile,
324 Args: map[string]string{
325 "cFlags": moduleCflags,
326 "tidyFlags": flags.tidyFlags,
327 },
328 })
329 }
330
Colin Cross3f40fa42015-01-30 17:27:36 -0800331 }
332
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700333 return Objects{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700334 objFiles: objFiles,
335 tidyFiles: tidyFiles,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700336 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800337}
338
339// Generate a rule for compiling multiple .o files to a static library (.a)
Colin Cross635c3b02016-05-18 15:37:25 -0700340func TransformObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700341 flags builderFlags, outputFile android.ModuleOutPath, deps android.Paths) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800342
343 arCmd := gccCmd(flags.toolchain, "ar")
344 arFlags := "crsPD"
345
Colin Cross635c3b02016-05-18 15:37:25 -0700346 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700347 Rule: ar,
348 Output: outputFile,
349 Inputs: objFiles,
350 Implicits: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800351 Args: map[string]string{
352 "arFlags": arFlags,
353 "arCmd": arCmd,
354 },
355 })
356}
357
Colin Cross0af4b842015-04-30 16:36:18 -0700358// Generate a rule for compiling multiple .o files to a static library (.a) on
359// darwin. The darwin ar tool doesn't support @file for list files, and has a
360// very small command line length limit, so we have to split the ar into multiple
361// steps, each appending to the previous one.
Colin Cross635c3b02016-05-18 15:37:25 -0700362func TransformDarwinObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700363 flags builderFlags, outputPath android.ModuleOutPath, deps android.Paths) {
Colin Cross0af4b842015-04-30 16:36:18 -0700364
Colin Cross0af4b842015-04-30 16:36:18 -0700365 arFlags := "cqs"
366
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700367 if len(objFiles) == 0 {
Colin Cross635c3b02016-05-18 15:37:25 -0700368 dummy := android.PathForModuleOut(ctx, "dummy"+objectExtension)
369 dummyAr := android.PathForModuleOut(ctx, "dummy"+staticLibraryExtension)
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700370
Colin Cross635c3b02016-05-18 15:37:25 -0700371 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700372 Rule: emptyFile,
373 Output: dummy,
374 Implicits: deps,
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700375 })
376
Colin Cross635c3b02016-05-18 15:37:25 -0700377 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700378 Rule: darwinAr,
379 Output: dummyAr,
380 Input: dummy,
381 Args: map[string]string{
382 "arFlags": arFlags,
383 },
384 })
385
Colin Cross635c3b02016-05-18 15:37:25 -0700386 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700387 Rule: darwinAppendAr,
388 Output: outputPath,
389 Input: dummy,
390 Args: map[string]string{
391 "arFlags": "d",
392 "inAr": dummyAr.String(),
393 },
394 })
395
396 return
397 }
398
Colin Cross0af4b842015-04-30 16:36:18 -0700399 // ARG_MAX on darwin is 262144, use half that to be safe
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700400 objFilesLists, err := splitListForSize(objFiles.Strings(), 131072)
Colin Cross0af4b842015-04-30 16:36:18 -0700401 if err != nil {
402 ctx.ModuleErrorf("%s", err.Error())
403 }
404
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700405 outputFile := outputPath.String()
406
Colin Cross0af4b842015-04-30 16:36:18 -0700407 var in, out string
408 for i, l := range objFilesLists {
409 in = out
410 out = outputFile
411 if i != len(objFilesLists)-1 {
412 out += "." + strconv.Itoa(i)
413 }
414
415 if in == "" {
416 ctx.Build(pctx, blueprint.BuildParams{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700417 Rule: darwinAr,
418 Outputs: []string{out},
419 Inputs: l,
420 Implicits: deps.Strings(),
Colin Cross0af4b842015-04-30 16:36:18 -0700421 Args: map[string]string{
422 "arFlags": arFlags,
Colin Cross0af4b842015-04-30 16:36:18 -0700423 },
424 })
425 } else {
426 ctx.Build(pctx, blueprint.BuildParams{
Colin Cross635c3b02016-05-18 15:37:25 -0700427 Rule: darwinAppendAr,
428 Outputs: []string{out},
429 Inputs: l,
Colin Cross0af4b842015-04-30 16:36:18 -0700430 Args: map[string]string{
431 "arFlags": arFlags,
Colin Cross0af4b842015-04-30 16:36:18 -0700432 "inAr": in,
433 },
434 })
435 }
436 }
437}
438
Colin Cross3f40fa42015-01-30 17:27:36 -0800439// Generate a rule for compiling multiple .o files, plus static libraries, whole static libraries,
440// and shared libraires, to a shared library (.so) or dynamic executable
Colin Cross635c3b02016-05-18 15:37:25 -0700441func TransformObjToDynamicBinary(ctx android.ModuleContext,
442 objFiles, sharedLibs, staticLibs, lateStaticLibs, wholeStaticLibs, deps android.Paths,
443 crtBegin, crtEnd android.OptionalPath, groupLate bool, flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800444
445 var ldCmd string
446 if flags.clang {
Colin Crossb98c8b02016-07-29 13:44:28 -0700447 ldCmd = "${config.ClangBin}/clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800448 } else {
449 ldCmd = gccCmd(flags.toolchain, "g++")
450 }
451
Colin Cross3f40fa42015-01-30 17:27:36 -0800452 var libFlagsList []string
453
Colin Cross16b23492016-01-06 14:41:07 -0800454 if len(flags.libFlags) > 0 {
455 libFlagsList = append(libFlagsList, flags.libFlags)
456 }
457
Colin Cross3f40fa42015-01-30 17:27:36 -0800458 if len(wholeStaticLibs) > 0 {
Dan Willemsen490fd492015-11-24 17:53:15 -0800459 if ctx.Host() && ctx.Darwin() {
Colin Cross635c3b02016-05-18 15:37:25 -0700460 libFlagsList = append(libFlagsList, android.JoinWithPrefix(wholeStaticLibs.Strings(), "-force_load "))
Colin Cross0af4b842015-04-30 16:36:18 -0700461 } else {
462 libFlagsList = append(libFlagsList, "-Wl,--whole-archive ")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700463 libFlagsList = append(libFlagsList, wholeStaticLibs.Strings()...)
Colin Cross0af4b842015-04-30 16:36:18 -0700464 libFlagsList = append(libFlagsList, "-Wl,--no-whole-archive ")
465 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800466 }
467
Colin Cross18c0c5a2016-12-01 14:45:23 -0800468 if flags.groupStaticLibs && len(staticLibs) > 0 {
469 libFlagsList = append(libFlagsList, "-Wl,--start-group")
470 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700471 libFlagsList = append(libFlagsList, staticLibs.Strings()...)
Colin Cross18c0c5a2016-12-01 14:45:23 -0800472 if flags.groupStaticLibs && len(staticLibs) > 0 {
473 libFlagsList = append(libFlagsList, "-Wl,--end-group")
474 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800475
Stephen Hines10347862016-07-18 15:54:54 -0700476 if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 {
Dan Willemsenedc385f2015-07-08 13:02:23 -0700477 libFlagsList = append(libFlagsList, "-Wl,--start-group")
478 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700479 libFlagsList = append(libFlagsList, lateStaticLibs.Strings()...)
Stephen Hines10347862016-07-18 15:54:54 -0700480 if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 {
Dan Willemsenedc385f2015-07-08 13:02:23 -0700481 libFlagsList = append(libFlagsList, "-Wl,--end-group")
482 }
483
Colin Cross3f40fa42015-01-30 17:27:36 -0800484 for _, lib := range sharedLibs {
Dan Albert9840e1b2016-07-21 08:47:33 -0700485 libFlagsList = append(libFlagsList, lib.String())
Colin Cross3f40fa42015-01-30 17:27:36 -0800486 }
487
Colin Cross3f40fa42015-01-30 17:27:36 -0800488 deps = append(deps, staticLibs...)
Colin Cross3075ad02015-03-17 10:47:08 -0700489 deps = append(deps, lateStaticLibs...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800490 deps = append(deps, wholeStaticLibs...)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700491 if crtBegin.Valid() {
492 deps = append(deps, crtBegin.Path(), crtEnd.Path())
Colin Cross3f40fa42015-01-30 17:27:36 -0800493 }
494
Colin Cross635c3b02016-05-18 15:37:25 -0700495 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Colin Cross3f40fa42015-01-30 17:27:36 -0800496 Rule: ld,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700497 Output: outputFile,
Colin Cross3f40fa42015-01-30 17:27:36 -0800498 Inputs: objFiles,
499 Implicits: deps,
500 Args: map[string]string{
Dan Albertce2b8392016-07-21 13:16:49 -0700501 "ldCmd": ldCmd,
502 "crtBegin": crtBegin.String(),
503 "libFlags": strings.Join(libFlagsList, " "),
504 "ldFlags": flags.ldFlags,
505 "crtEnd": crtEnd.String(),
Colin Cross3f40fa42015-01-30 17:27:36 -0800506 },
507 })
508}
509
Colin Cross26c34ed2016-09-30 17:10:16 -0700510// Generate a rule for extract a table of contents from a shared library (.so)
511func TransformSharedObjectToToc(ctx android.ModuleContext, inputFile android.WritablePath,
512 outputFile android.WritablePath, flags builderFlags) {
513
514 crossCompile := gccCmd(flags.toolchain, "")
515
516 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
517 Rule: toc,
518 Output: outputFile,
519 Input: inputFile,
520 Args: map[string]string{
521 "crossCompile": crossCompile,
522 },
523 })
524}
525
Colin Cross3f40fa42015-01-30 17:27:36 -0800526// Generate a rule for compiling multiple .o files to a .o using ld partial linking
Colin Cross635c3b02016-05-18 15:37:25 -0700527func TransformObjsToObj(ctx android.ModuleContext, objFiles android.Paths,
528 flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800529
Colin Cross41280a42015-11-23 14:01:42 -0800530 var ldCmd string
531 if flags.clang {
Colin Crossb98c8b02016-07-29 13:44:28 -0700532 ldCmd = "${config.ClangBin}/clang++"
Colin Cross41280a42015-11-23 14:01:42 -0800533 } else {
534 ldCmd = gccCmd(flags.toolchain, "g++")
535 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800536
Colin Cross635c3b02016-05-18 15:37:25 -0700537 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700538 Rule: partialLd,
539 Output: outputFile,
540 Inputs: objFiles,
Colin Cross3f40fa42015-01-30 17:27:36 -0800541 Args: map[string]string{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700542 "ldCmd": ldCmd,
Colin Cross41280a42015-11-23 14:01:42 -0800543 "ldFlags": flags.ldFlags,
Colin Cross3f40fa42015-01-30 17:27:36 -0800544 },
545 })
546}
547
Colin Crossbfae8852015-03-26 14:44:11 -0700548// Generate a rule for runing objcopy --prefix-symbols on a binary
Colin Cross635c3b02016-05-18 15:37:25 -0700549func TransformBinaryPrefixSymbols(ctx android.ModuleContext, prefix string, inputFile android.Path,
550 flags builderFlags, outputFile android.WritablePath) {
Colin Crossbfae8852015-03-26 14:44:11 -0700551
552 objcopyCmd := gccCmd(flags.toolchain, "objcopy")
553
Colin Cross635c3b02016-05-18 15:37:25 -0700554 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700555 Rule: prefixSymbols,
556 Output: outputFile,
557 Input: inputFile,
Colin Crossbfae8852015-03-26 14:44:11 -0700558 Args: map[string]string{
559 "objcopyCmd": objcopyCmd,
560 "prefix": prefix,
561 },
562 })
563}
564
Colin Cross635c3b02016-05-18 15:37:25 -0700565func TransformStrip(ctx android.ModuleContext, inputFile android.Path,
566 outputFile android.WritablePath, flags builderFlags) {
Colin Cross665dce92016-04-28 14:50:03 -0700567
568 crossCompile := gccCmd(flags.toolchain, "")
569 args := ""
570 if flags.stripAddGnuDebuglink {
571 args += " --add-gnu-debuglink"
572 }
573 if flags.stripKeepMiniDebugInfo {
574 args += " --keep-mini-debug-info"
575 }
576 if flags.stripKeepSymbols {
577 args += " --keep-symbols"
578 }
579
Colin Cross635c3b02016-05-18 15:37:25 -0700580 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Colin Cross665dce92016-04-28 14:50:03 -0700581 Rule: strip,
582 Output: outputFile,
583 Input: inputFile,
584 Args: map[string]string{
585 "crossCompile": crossCompile,
586 "args": args,
587 },
588 })
589}
590
Colin Cross635c3b02016-05-18 15:37:25 -0700591func TransformDarwinStrip(ctx android.ModuleContext, inputFile android.Path,
592 outputFile android.WritablePath) {
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700593
Colin Cross635c3b02016-05-18 15:37:25 -0700594 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700595 Rule: darwinStrip,
596 Output: outputFile,
597 Input: inputFile,
598 })
599}
600
Colin Cross635c3b02016-05-18 15:37:25 -0700601func CopyGccLib(ctx android.ModuleContext, libName string,
602 flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800603
Colin Cross635c3b02016-05-18 15:37:25 -0700604 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700605 Rule: copyGccLib,
606 Output: outputFile,
Colin Cross3f40fa42015-01-30 17:27:36 -0800607 Args: map[string]string{
608 "ccCmd": gccCmd(flags.toolchain, "gcc"),
609 "cFlags": flags.globalFlags,
610 "libName": libName,
611 },
612 })
613}
614
Colin Crossb98c8b02016-07-29 13:44:28 -0700615func gccCmd(toolchain config.Toolchain, cmd string) string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800616 return filepath.Join(toolchain.GccRoot(), "bin", toolchain.GccTriple()+"-"+cmd)
617}
Colin Cross0af4b842015-04-30 16:36:18 -0700618
619func splitListForSize(list []string, limit int) (lists [][]string, err error) {
620 var i int
621
622 start := 0
623 bytes := 0
624 for i = range list {
625 l := len(list[i])
626 if l > limit {
627 return nil, fmt.Errorf("list element greater than size limit (%d)", limit)
628 }
629 if bytes+l > limit {
630 lists = append(lists, list[start:i])
631 start = i
632 bytes = 0
633 }
634 bytes += l + 1 // count a space between each list element
635 }
636
637 lists = append(lists, list[start:])
638
639 totalLen := 0
640 for _, l := range lists {
641 totalLen += len(l)
642 }
643 if totalLen != len(list) {
644 panic(fmt.Errorf("Failed breaking up list, %d != %d", len(list), totalLen))
645 }
646 return lists, nil
647}