2016-07-30 03:48:20 +08:00
|
|
|
// Copyright 2016 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package cc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
//
|
|
|
|
// Objects (for crt*.o)
|
|
|
|
//
|
|
|
|
|
|
|
|
func init() {
|
2018-10-03 13:25:58 +08:00
|
|
|
android.RegisterModuleType("cc_object", ObjectFactory)
|
2016-07-30 03:48:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type objectLinker struct {
|
2016-07-30 08:28:03 +08:00
|
|
|
*baseLinker
|
2016-07-30 03:48:20 +08:00
|
|
|
Properties ObjectLinkerProperties
|
|
|
|
}
|
|
|
|
|
2018-10-03 13:25:58 +08:00
|
|
|
func ObjectFactory() android.Module {
|
2016-11-17 16:30:56 +08:00
|
|
|
module := newBaseModule(android.HostAndDeviceSupported, android.MultilibBoth)
|
2016-07-30 08:28:03 +08:00
|
|
|
module.linker = &objectLinker{
|
2018-07-27 05:00:24 +08:00
|
|
|
baseLinker: NewBaseLinker(nil),
|
2016-07-30 08:28:03 +08:00
|
|
|
}
|
|
|
|
module.compiler = NewBaseCompiler()
|
2018-10-26 01:53:44 +08:00
|
|
|
|
|
|
|
// Clang's address-significance tables are incompatible with ld -r.
|
|
|
|
module.compiler.appendCflags([]string{"-fno-addrsig"})
|
|
|
|
|
2018-09-28 02:02:39 +08:00
|
|
|
module.stl = &stl{}
|
2016-07-30 03:48:20 +08:00
|
|
|
return module.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (object *objectLinker) appendLdflags(flags []string) {
|
2017-09-28 08:01:44 +08:00
|
|
|
panic(fmt.Errorf("appendLdflags on objectLinker not supported"))
|
2016-07-30 03:48:20 +08:00
|
|
|
}
|
|
|
|
|
2016-08-02 04:20:05 +08:00
|
|
|
func (object *objectLinker) linkerProps() []interface{} {
|
2016-07-30 03:48:20 +08:00
|
|
|
return []interface{}{&object.Properties}
|
|
|
|
}
|
|
|
|
|
2016-08-02 04:20:05 +08:00
|
|
|
func (*objectLinker) linkerInit(ctx BaseModuleContext) {}
|
2016-07-30 03:48:20 +08:00
|
|
|
|
2016-12-14 09:06:13 +08:00
|
|
|
func (object *objectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps {
|
2017-11-04 04:31:05 +08:00
|
|
|
if ctx.useVndk() && ctx.toolchain().Bionic() {
|
2017-09-19 07:33:37 +08:00
|
|
|
// Needed for VNDK builds where bionic headers aren't automatically added.
|
|
|
|
deps.LateSharedLibs = append(deps.LateSharedLibs, "libc")
|
|
|
|
}
|
|
|
|
|
2016-07-30 03:48:20 +08:00
|
|
|
deps.ObjFiles = append(deps.ObjFiles, object.Properties.Objs...)
|
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
2016-08-02 04:20:05 +08:00
|
|
|
func (*objectLinker) linkerFlags(ctx ModuleContext, flags Flags) Flags {
|
2018-10-08 11:54:34 +08:00
|
|
|
flags.LdFlags = append(flags.LdFlags, ctx.toolchain().ToolchainClangLdflags())
|
2016-07-30 03:48:20 +08:00
|
|
|
|
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
func (object *objectLinker) link(ctx ModuleContext,
|
2016-09-27 08:33:01 +08:00
|
|
|
flags Flags, deps PathDeps, objs Objects) android.Path {
|
2016-07-30 03:48:20 +08:00
|
|
|
|
2016-09-27 08:33:01 +08:00
|
|
|
objs = objs.Append(deps.Objs)
|
2016-07-30 03:48:20 +08:00
|
|
|
|
|
|
|
var outputFile android.Path
|
2017-09-19 13:47:20 +08:00
|
|
|
builderFlags := flagsToBuilderFlags(flags)
|
|
|
|
|
2016-09-27 08:33:01 +08:00
|
|
|
if len(objs.objFiles) == 1 {
|
|
|
|
outputFile = objs.objFiles[0]
|
2017-09-19 13:47:20 +08:00
|
|
|
|
2017-11-08 02:57:05 +08:00
|
|
|
if String(object.Properties.Prefix_symbols) != "" {
|
2017-09-19 13:47:20 +08:00
|
|
|
output := android.PathForModuleOut(ctx, ctx.ModuleName()+objectExtension)
|
2017-11-08 02:57:05 +08:00
|
|
|
TransformBinaryPrefixSymbols(ctx, String(object.Properties.Prefix_symbols), outputFile,
|
2017-09-19 13:47:20 +08:00
|
|
|
builderFlags, output)
|
|
|
|
outputFile = output
|
|
|
|
}
|
2016-07-30 03:48:20 +08:00
|
|
|
} else {
|
|
|
|
output := android.PathForModuleOut(ctx, ctx.ModuleName()+objectExtension)
|
|
|
|
outputFile = output
|
2017-09-19 13:47:20 +08:00
|
|
|
|
2017-11-08 02:57:05 +08:00
|
|
|
if String(object.Properties.Prefix_symbols) != "" {
|
2017-09-19 13:47:20 +08:00
|
|
|
input := android.PathForModuleOut(ctx, "unprefixed", ctx.ModuleName()+objectExtension)
|
2017-11-08 02:57:05 +08:00
|
|
|
TransformBinaryPrefixSymbols(ctx, String(object.Properties.Prefix_symbols), input,
|
2017-09-19 13:47:20 +08:00
|
|
|
builderFlags, output)
|
|
|
|
output = input
|
|
|
|
}
|
|
|
|
|
|
|
|
TransformObjsToObj(ctx, objs.objFiles, builderFlags, output)
|
2016-07-30 03:48:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.CheckbuildFile(outputFile)
|
|
|
|
return outputFile
|
|
|
|
}
|