blob: d0b21edaf800235f8cc1f4ce5555de8d33344ada [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
Dan Willemsene1240db2016-11-03 14:28:51 -0700197 aidlFlags string
Colin Crossb98c8b02016-07-29 13:44:28 -0700198 toolchain config.Toolchain
Colin Cross3f40fa42015-01-30 17:27:36 -0800199 clang bool
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700200 tidy bool
Colin Cross665dce92016-04-28 14:50:03 -0700201
Colin Cross18c0c5a2016-12-01 14:45:23 -0800202 groupStaticLibs bool
203
Colin Cross665dce92016-04-28 14:50:03 -0700204 stripKeepSymbols bool
205 stripKeepMiniDebugInfo bool
206 stripAddGnuDebuglink bool
Colin Cross3f40fa42015-01-30 17:27:36 -0800207}
208
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700209type Objects struct {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700210 objFiles android.Paths
211 tidyFiles android.Paths
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700212}
213
214func (a Objects) Copy() Objects {
215 return Objects{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700216 objFiles: append(android.Paths{}, a.objFiles...),
217 tidyFiles: append(android.Paths{}, a.tidyFiles...),
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700218 }
219}
220
221func (a Objects) Append(b Objects) Objects {
222 return Objects{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700223 objFiles: append(a.objFiles, b.objFiles...),
224 tidyFiles: append(a.tidyFiles, b.tidyFiles...),
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700225 }
226}
227
Colin Cross3f40fa42015-01-30 17:27:36 -0800228// Generate rules for compiling multiple .c, .cpp, or .S files to individual .o files
Colin Cross635c3b02016-05-18 15:37:25 -0700229func TransformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles android.Paths,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700230 flags builderFlags, deps android.Paths) Objects {
Colin Cross581c1892015-04-07 16:50:10 -0700231
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700232 objFiles := make(android.Paths, len(srcFiles))
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700233 var tidyFiles android.Paths
234 if flags.tidy && flags.clang {
235 tidyFiles = make(android.Paths, 0, len(srcFiles))
236 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800237
238 cflags := flags.globalFlags + " " + flags.cFlags + " " + flags.conlyFlags
239 cppflags := flags.globalFlags + " " + flags.cFlags + " " + flags.cppFlags
240 asflags := flags.globalFlags + " " + flags.asFlags
241
Dan Willemsenbe03f342016-03-03 17:21:04 -0800242 if flags.clang {
Colin Crossb98c8b02016-07-29 13:44:28 -0700243 cflags += " ${config.NoOverrideClangGlobalCflags}"
244 cppflags += " ${config.NoOverrideClangGlobalCflags}"
Dan Willemsenbe03f342016-03-03 17:21:04 -0800245 } else {
Colin Crossb98c8b02016-07-29 13:44:28 -0700246 cflags += " ${config.NoOverrideGlobalCflags}"
247 cppflags += " ${config.NoOverrideGlobalCflags}"
Dan Willemsenbe03f342016-03-03 17:21:04 -0800248 }
249
Colin Cross3f40fa42015-01-30 17:27:36 -0800250 for i, srcFile := range srcFiles {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700251 objFile := android.ObjPathWithExt(ctx, subdir, srcFile, "o")
Colin Cross3f40fa42015-01-30 17:27:36 -0800252
253 objFiles[i] = objFile
254
Colin Cross91e90042016-12-02 17:13:24 -0800255 if srcFile.Ext() == ".asm" {
256 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
257 Rule: yasm,
258 Output: objFile,
259 Input: srcFile,
260 OrderOnly: deps,
261 Args: map[string]string{
262 "asFlags": flags.yasmFlags,
263 },
264 })
265 continue
266 }
267
Colin Cross3f40fa42015-01-30 17:27:36 -0800268 var moduleCflags string
269 var ccCmd string
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700270 tidy := flags.tidy && flags.clang
Colin Cross3f40fa42015-01-30 17:27:36 -0800271
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700272 switch srcFile.Ext() {
Colin Cross3f40fa42015-01-30 17:27:36 -0800273 case ".S", ".s":
274 ccCmd = "gcc"
275 moduleCflags = asflags
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700276 tidy = false
Colin Cross3f40fa42015-01-30 17:27:36 -0800277 case ".c":
278 ccCmd = "gcc"
279 moduleCflags = cflags
Colin Cross9978ffe2016-12-01 15:31:22 -0800280 case ".cpp", ".cc", ".mm":
Colin Cross3f40fa42015-01-30 17:27:36 -0800281 ccCmd = "g++"
282 moduleCflags = cppflags
283 default:
284 ctx.ModuleErrorf("File %s has unknown extension", srcFile)
285 continue
286 }
287
288 if flags.clang {
289 switch ccCmd {
290 case "gcc":
291 ccCmd = "clang"
292 case "g++":
293 ccCmd = "clang++"
294 default:
295 panic("unrecoginzied ccCmd")
296 }
297
Colin Crossb98c8b02016-07-29 13:44:28 -0700298 ccCmd = "${config.ClangBin}/" + ccCmd
Colin Cross3f40fa42015-01-30 17:27:36 -0800299 } else {
300 ccCmd = gccCmd(flags.toolchain, ccCmd)
301 }
302
Colin Cross635c3b02016-05-18 15:37:25 -0700303 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Colin Cross3f40fa42015-01-30 17:27:36 -0800304 Rule: cc,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700305 Output: objFile,
306 Input: srcFile,
Dan Willemsenb40aab62016-04-20 14:21:14 -0700307 OrderOnly: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800308 Args: map[string]string{
Colin Cross28344522015-04-22 13:07:53 -0700309 "cFlags": moduleCflags,
310 "ccCmd": ccCmd,
Colin Cross3f40fa42015-01-30 17:27:36 -0800311 },
312 })
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700313
314 if tidy {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700315 tidyFile := android.ObjPathWithExt(ctx, subdir, srcFile, "tidy")
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700316 tidyFiles = append(tidyFiles, tidyFile)
317
318 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
319 Rule: clangTidy,
320 Output: tidyFile,
321 Input: srcFile,
322 // We must depend on objFile, since clang-tidy doesn't
323 // support exporting dependencies.
324 Implicit: objFile,
325 Args: map[string]string{
326 "cFlags": moduleCflags,
327 "tidyFlags": flags.tidyFlags,
328 },
329 })
330 }
331
Colin Cross3f40fa42015-01-30 17:27:36 -0800332 }
333
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700334 return Objects{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700335 objFiles: objFiles,
336 tidyFiles: tidyFiles,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700337 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800338}
339
340// Generate a rule for compiling multiple .o files to a static library (.a)
Colin Cross635c3b02016-05-18 15:37:25 -0700341func TransformObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700342 flags builderFlags, outputFile android.ModuleOutPath, deps android.Paths) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800343
344 arCmd := gccCmd(flags.toolchain, "ar")
345 arFlags := "crsPD"
346
Colin Cross635c3b02016-05-18 15:37:25 -0700347 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700348 Rule: ar,
349 Output: outputFile,
350 Inputs: objFiles,
351 Implicits: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800352 Args: map[string]string{
353 "arFlags": arFlags,
354 "arCmd": arCmd,
355 },
356 })
357}
358
Colin Cross0af4b842015-04-30 16:36:18 -0700359// Generate a rule for compiling multiple .o files to a static library (.a) on
360// darwin. The darwin ar tool doesn't support @file for list files, and has a
361// very small command line length limit, so we have to split the ar into multiple
362// steps, each appending to the previous one.
Colin Cross635c3b02016-05-18 15:37:25 -0700363func TransformDarwinObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700364 flags builderFlags, outputPath android.ModuleOutPath, deps android.Paths) {
Colin Cross0af4b842015-04-30 16:36:18 -0700365
Colin Cross0af4b842015-04-30 16:36:18 -0700366 arFlags := "cqs"
367
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700368 if len(objFiles) == 0 {
Colin Cross635c3b02016-05-18 15:37:25 -0700369 dummy := android.PathForModuleOut(ctx, "dummy"+objectExtension)
370 dummyAr := android.PathForModuleOut(ctx, "dummy"+staticLibraryExtension)
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700371
Colin Cross635c3b02016-05-18 15:37:25 -0700372 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700373 Rule: emptyFile,
374 Output: dummy,
375 Implicits: deps,
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700376 })
377
Colin Cross635c3b02016-05-18 15:37:25 -0700378 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700379 Rule: darwinAr,
380 Output: dummyAr,
381 Input: dummy,
382 Args: map[string]string{
383 "arFlags": arFlags,
384 },
385 })
386
Colin Cross635c3b02016-05-18 15:37:25 -0700387 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700388 Rule: darwinAppendAr,
389 Output: outputPath,
390 Input: dummy,
391 Args: map[string]string{
392 "arFlags": "d",
393 "inAr": dummyAr.String(),
394 },
395 })
396
397 return
398 }
399
Colin Cross0af4b842015-04-30 16:36:18 -0700400 // ARG_MAX on darwin is 262144, use half that to be safe
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700401 objFilesLists, err := splitListForSize(objFiles.Strings(), 131072)
Colin Cross0af4b842015-04-30 16:36:18 -0700402 if err != nil {
403 ctx.ModuleErrorf("%s", err.Error())
404 }
405
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700406 outputFile := outputPath.String()
407
Colin Cross0af4b842015-04-30 16:36:18 -0700408 var in, out string
409 for i, l := range objFilesLists {
410 in = out
411 out = outputFile
412 if i != len(objFilesLists)-1 {
413 out += "." + strconv.Itoa(i)
414 }
415
416 if in == "" {
417 ctx.Build(pctx, blueprint.BuildParams{
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700418 Rule: darwinAr,
419 Outputs: []string{out},
420 Inputs: l,
421 Implicits: deps.Strings(),
Colin Cross0af4b842015-04-30 16:36:18 -0700422 Args: map[string]string{
423 "arFlags": arFlags,
Colin Cross0af4b842015-04-30 16:36:18 -0700424 },
425 })
426 } else {
427 ctx.Build(pctx, blueprint.BuildParams{
Colin Cross635c3b02016-05-18 15:37:25 -0700428 Rule: darwinAppendAr,
429 Outputs: []string{out},
430 Inputs: l,
Colin Cross0af4b842015-04-30 16:36:18 -0700431 Args: map[string]string{
432 "arFlags": arFlags,
Colin Cross0af4b842015-04-30 16:36:18 -0700433 "inAr": in,
434 },
435 })
436 }
437 }
438}
439
Colin Cross3f40fa42015-01-30 17:27:36 -0800440// Generate a rule for compiling multiple .o files, plus static libraries, whole static libraries,
441// and shared libraires, to a shared library (.so) or dynamic executable
Colin Cross635c3b02016-05-18 15:37:25 -0700442func TransformObjToDynamicBinary(ctx android.ModuleContext,
443 objFiles, sharedLibs, staticLibs, lateStaticLibs, wholeStaticLibs, deps android.Paths,
444 crtBegin, crtEnd android.OptionalPath, groupLate bool, flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800445
446 var ldCmd string
447 if flags.clang {
Colin Crossb98c8b02016-07-29 13:44:28 -0700448 ldCmd = "${config.ClangBin}/clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800449 } else {
450 ldCmd = gccCmd(flags.toolchain, "g++")
451 }
452
Colin Cross3f40fa42015-01-30 17:27:36 -0800453 var libFlagsList []string
454
Colin Cross16b23492016-01-06 14:41:07 -0800455 if len(flags.libFlags) > 0 {
456 libFlagsList = append(libFlagsList, flags.libFlags)
457 }
458
Colin Cross3f40fa42015-01-30 17:27:36 -0800459 if len(wholeStaticLibs) > 0 {
Dan Willemsen490fd492015-11-24 17:53:15 -0800460 if ctx.Host() && ctx.Darwin() {
Colin Cross635c3b02016-05-18 15:37:25 -0700461 libFlagsList = append(libFlagsList, android.JoinWithPrefix(wholeStaticLibs.Strings(), "-force_load "))
Colin Cross0af4b842015-04-30 16:36:18 -0700462 } else {
463 libFlagsList = append(libFlagsList, "-Wl,--whole-archive ")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700464 libFlagsList = append(libFlagsList, wholeStaticLibs.Strings()...)
Colin Cross0af4b842015-04-30 16:36:18 -0700465 libFlagsList = append(libFlagsList, "-Wl,--no-whole-archive ")
466 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800467 }
468
Colin Cross18c0c5a2016-12-01 14:45:23 -0800469 if flags.groupStaticLibs && len(staticLibs) > 0 {
470 libFlagsList = append(libFlagsList, "-Wl,--start-group")
471 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700472 libFlagsList = append(libFlagsList, staticLibs.Strings()...)
Colin Cross18c0c5a2016-12-01 14:45:23 -0800473 if flags.groupStaticLibs && len(staticLibs) > 0 {
474 libFlagsList = append(libFlagsList, "-Wl,--end-group")
475 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800476
Stephen Hines10347862016-07-18 15:54:54 -0700477 if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 {
Dan Willemsenedc385f2015-07-08 13:02:23 -0700478 libFlagsList = append(libFlagsList, "-Wl,--start-group")
479 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700480 libFlagsList = append(libFlagsList, lateStaticLibs.Strings()...)
Stephen Hines10347862016-07-18 15:54:54 -0700481 if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 {
Dan Willemsenedc385f2015-07-08 13:02:23 -0700482 libFlagsList = append(libFlagsList, "-Wl,--end-group")
483 }
484
Colin Cross3f40fa42015-01-30 17:27:36 -0800485 for _, lib := range sharedLibs {
Dan Albert9840e1b2016-07-21 08:47:33 -0700486 libFlagsList = append(libFlagsList, lib.String())
Colin Cross3f40fa42015-01-30 17:27:36 -0800487 }
488
Colin Cross3f40fa42015-01-30 17:27:36 -0800489 deps = append(deps, staticLibs...)
Colin Cross3075ad02015-03-17 10:47:08 -0700490 deps = append(deps, lateStaticLibs...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800491 deps = append(deps, wholeStaticLibs...)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700492 if crtBegin.Valid() {
493 deps = append(deps, crtBegin.Path(), crtEnd.Path())
Colin Cross3f40fa42015-01-30 17:27:36 -0800494 }
495
Colin Cross635c3b02016-05-18 15:37:25 -0700496 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Colin Cross3f40fa42015-01-30 17:27:36 -0800497 Rule: ld,
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700498 Output: outputFile,
Colin Cross3f40fa42015-01-30 17:27:36 -0800499 Inputs: objFiles,
500 Implicits: deps,
501 Args: map[string]string{
Dan Albertce2b8392016-07-21 13:16:49 -0700502 "ldCmd": ldCmd,
503 "crtBegin": crtBegin.String(),
504 "libFlags": strings.Join(libFlagsList, " "),
505 "ldFlags": flags.ldFlags,
506 "crtEnd": crtEnd.String(),
Colin Cross3f40fa42015-01-30 17:27:36 -0800507 },
508 })
509}
510
Colin Cross26c34ed2016-09-30 17:10:16 -0700511// Generate a rule for extract a table of contents from a shared library (.so)
512func TransformSharedObjectToToc(ctx android.ModuleContext, inputFile android.WritablePath,
513 outputFile android.WritablePath, flags builderFlags) {
514
515 crossCompile := gccCmd(flags.toolchain, "")
516
517 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
518 Rule: toc,
519 Output: outputFile,
520 Input: inputFile,
521 Args: map[string]string{
522 "crossCompile": crossCompile,
523 },
524 })
525}
526
Colin Cross3f40fa42015-01-30 17:27:36 -0800527// Generate a rule for compiling multiple .o files to a .o using ld partial linking
Colin Cross635c3b02016-05-18 15:37:25 -0700528func TransformObjsToObj(ctx android.ModuleContext, objFiles android.Paths,
529 flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800530
Colin Cross41280a42015-11-23 14:01:42 -0800531 var ldCmd string
532 if flags.clang {
Colin Crossb98c8b02016-07-29 13:44:28 -0700533 ldCmd = "${config.ClangBin}/clang++"
Colin Cross41280a42015-11-23 14:01:42 -0800534 } else {
535 ldCmd = gccCmd(flags.toolchain, "g++")
536 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800537
Colin Cross635c3b02016-05-18 15:37:25 -0700538 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700539 Rule: partialLd,
540 Output: outputFile,
541 Inputs: objFiles,
Colin Cross3f40fa42015-01-30 17:27:36 -0800542 Args: map[string]string{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700543 "ldCmd": ldCmd,
Colin Cross41280a42015-11-23 14:01:42 -0800544 "ldFlags": flags.ldFlags,
Colin Cross3f40fa42015-01-30 17:27:36 -0800545 },
546 })
547}
548
Colin Crossbfae8852015-03-26 14:44:11 -0700549// Generate a rule for runing objcopy --prefix-symbols on a binary
Colin Cross635c3b02016-05-18 15:37:25 -0700550func TransformBinaryPrefixSymbols(ctx android.ModuleContext, prefix string, inputFile android.Path,
551 flags builderFlags, outputFile android.WritablePath) {
Colin Crossbfae8852015-03-26 14:44:11 -0700552
553 objcopyCmd := gccCmd(flags.toolchain, "objcopy")
554
Colin Cross635c3b02016-05-18 15:37:25 -0700555 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700556 Rule: prefixSymbols,
557 Output: outputFile,
558 Input: inputFile,
Colin Crossbfae8852015-03-26 14:44:11 -0700559 Args: map[string]string{
560 "objcopyCmd": objcopyCmd,
561 "prefix": prefix,
562 },
563 })
564}
565
Colin Cross635c3b02016-05-18 15:37:25 -0700566func TransformStrip(ctx android.ModuleContext, inputFile android.Path,
567 outputFile android.WritablePath, flags builderFlags) {
Colin Cross665dce92016-04-28 14:50:03 -0700568
569 crossCompile := gccCmd(flags.toolchain, "")
570 args := ""
571 if flags.stripAddGnuDebuglink {
572 args += " --add-gnu-debuglink"
573 }
574 if flags.stripKeepMiniDebugInfo {
575 args += " --keep-mini-debug-info"
576 }
577 if flags.stripKeepSymbols {
578 args += " --keep-symbols"
579 }
580
Colin Cross635c3b02016-05-18 15:37:25 -0700581 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Colin Cross665dce92016-04-28 14:50:03 -0700582 Rule: strip,
583 Output: outputFile,
584 Input: inputFile,
585 Args: map[string]string{
586 "crossCompile": crossCompile,
587 "args": args,
588 },
589 })
590}
591
Colin Cross635c3b02016-05-18 15:37:25 -0700592func TransformDarwinStrip(ctx android.ModuleContext, inputFile android.Path,
593 outputFile android.WritablePath) {
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700594
Colin Cross635c3b02016-05-18 15:37:25 -0700595 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700596 Rule: darwinStrip,
597 Output: outputFile,
598 Input: inputFile,
599 })
600}
601
Colin Cross635c3b02016-05-18 15:37:25 -0700602func CopyGccLib(ctx android.ModuleContext, libName string,
603 flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800604
Colin Cross635c3b02016-05-18 15:37:25 -0700605 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700606 Rule: copyGccLib,
607 Output: outputFile,
Colin Cross3f40fa42015-01-30 17:27:36 -0800608 Args: map[string]string{
609 "ccCmd": gccCmd(flags.toolchain, "gcc"),
610 "cFlags": flags.globalFlags,
611 "libName": libName,
612 },
613 })
614}
615
Colin Crossb98c8b02016-07-29 13:44:28 -0700616func gccCmd(toolchain config.Toolchain, cmd string) string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800617 return filepath.Join(toolchain.GccRoot(), "bin", toolchain.GccTriple()+"-"+cmd)
618}
Colin Cross0af4b842015-04-30 16:36:18 -0700619
620func splitListForSize(list []string, limit int) (lists [][]string, err error) {
621 var i int
622
623 start := 0
624 bytes := 0
625 for i = range list {
626 l := len(list[i])
627 if l > limit {
628 return nil, fmt.Errorf("list element greater than size limit (%d)", limit)
629 }
630 if bytes+l > limit {
631 lists = append(lists, list[start:i])
632 start = i
633 bytes = 0
634 }
635 bytes += l + 1 // count a space between each list element
636 }
637
638 lists = append(lists, list[start:])
639
640 totalLen := 0
641 for _, l := range lists {
642 totalLen += len(l)
643 }
644 if totalLen != len(list) {
645 panic(fmt.Errorf("Failed breaking up list, %d != %d", len(list), totalLen))
646 }
647 return lists, nil
648}