2019-08-28 03:03:00 +08:00
|
|
|
// Copyright 2019 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// 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 rust
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
android.RegisterModuleType("rust_binary", RustBinaryFactory)
|
|
|
|
android.RegisterModuleType("rust_binary_host", RustBinaryHostFactory)
|
|
|
|
}
|
|
|
|
|
|
|
|
type BinaryCompilerProperties struct {
|
2020-10-02 22:03:23 +08:00
|
|
|
// Builds this binary as a static binary. Implies prefer_rlib true.
|
|
|
|
//
|
|
|
|
// Static executables currently only support for bionic targets. Non-bionic targets will not produce a fully static
|
|
|
|
// binary, but will still implicitly imply prefer_rlib true.
|
|
|
|
Static_executable *bool `android:"arch_variant"`
|
2019-08-28 03:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type binaryDecorator struct {
|
|
|
|
*baseCompiler
|
2020-08-27 19:48:36 +08:00
|
|
|
stripper Stripper
|
2019-08-28 03:03:00 +08:00
|
|
|
|
2020-06-16 22:26:57 +08:00
|
|
|
Properties BinaryCompilerProperties
|
2019-08-28 03:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ compiler = (*binaryDecorator)(nil)
|
|
|
|
|
|
|
|
// rust_binary produces a binary that is runnable on a device.
|
|
|
|
func RustBinaryFactory() android.Module {
|
|
|
|
module, _ := NewRustBinary(android.HostAndDeviceSupported)
|
|
|
|
return module.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
func RustBinaryHostFactory() android.Module {
|
|
|
|
module, _ := NewRustBinary(android.HostSupported)
|
|
|
|
return module.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRustBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
|
|
|
|
module := newModule(hod, android.MultilibFirst)
|
|
|
|
|
|
|
|
binary := &binaryDecorator{
|
2019-12-13 11:36:05 +08:00
|
|
|
baseCompiler: NewBaseCompiler("bin", "", InstallInSystem),
|
2019-08-28 03:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module.compiler = binary
|
|
|
|
|
|
|
|
return module, binary
|
|
|
|
}
|
|
|
|
|
|
|
|
func (binary *binaryDecorator) compilerFlags(ctx ModuleContext, flags Flags) Flags {
|
|
|
|
flags = binary.baseCompiler.compilerFlags(ctx, flags)
|
2019-09-21 02:00:37 +08:00
|
|
|
|
|
|
|
if ctx.toolchain().Bionic() {
|
2019-11-06 04:16:46 +08:00
|
|
|
// no-undefined-version breaks dylib compilation since __rust_*alloc* functions aren't defined,
|
|
|
|
// but we can apply this to binaries.
|
2019-09-21 02:00:37 +08:00
|
|
|
flags.LinkFlags = append(flags.LinkFlags,
|
|
|
|
"-Wl,--gc-sections",
|
|
|
|
"-Wl,-z,nocopyreloc",
|
|
|
|
"-Wl,--no-undefined-version")
|
2020-10-02 22:03:23 +08:00
|
|
|
|
|
|
|
if Bool(binary.Properties.Static_executable) {
|
|
|
|
flags.LinkFlags = append(flags.LinkFlags, "-static")
|
|
|
|
flags.RustFlags = append(flags.RustFlags, "-C relocation-model=static")
|
|
|
|
}
|
2019-09-21 02:00:37 +08:00
|
|
|
}
|
|
|
|
|
2019-08-28 03:03:00 +08:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
func (binary *binaryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
|
|
|
|
deps = binary.baseCompiler.compilerDeps(ctx, deps)
|
|
|
|
|
2019-09-21 02:00:37 +08:00
|
|
|
if ctx.toolchain().Bionic() {
|
2020-10-02 22:03:23 +08:00
|
|
|
deps = bionicDeps(deps, Bool(binary.Properties.Static_executable))
|
|
|
|
if Bool(binary.Properties.Static_executable) {
|
|
|
|
deps.CrtBegin = "crtbegin_static"
|
|
|
|
} else {
|
|
|
|
deps.CrtBegin = "crtbegin_dynamic"
|
|
|
|
}
|
2019-09-21 02:00:37 +08:00
|
|
|
deps.CrtEnd = "crtend_android"
|
|
|
|
}
|
|
|
|
|
2019-08-28 03:03:00 +08:00
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
|
|
|
func (binary *binaryDecorator) compilerProps() []interface{} {
|
|
|
|
return append(binary.baseCompiler.compilerProps(),
|
2020-08-27 19:48:36 +08:00
|
|
|
&binary.Properties,
|
|
|
|
&binary.stripper.StripProperties)
|
2019-08-28 03:03:00 +08:00
|
|
|
}
|
|
|
|
|
2020-04-09 21:56:02 +08:00
|
|
|
func (binary *binaryDecorator) nativeCoverage() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-10-02 22:03:23 +08:00
|
|
|
func (binary *binaryDecorator) preferRlib() bool {
|
2020-12-09 03:43:00 +08:00
|
|
|
return Bool(binary.baseCompiler.Properties.Prefer_rlib) || Bool(binary.Properties.Static_executable)
|
2020-10-02 22:03:23 +08:00
|
|
|
}
|
|
|
|
|
2019-08-28 03:03:00 +08:00
|
|
|
func (binary *binaryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path {
|
|
|
|
fileName := binary.getStem(ctx) + ctx.toolchain().ExecutableSuffix()
|
2020-07-23 04:09:13 +08:00
|
|
|
srcPath, _ := srcPathFromModuleSrcs(ctx, binary.baseCompiler.Properties.Srcs)
|
2019-08-28 03:03:00 +08:00
|
|
|
outputFile := android.PathForModuleOut(ctx, fileName)
|
|
|
|
|
|
|
|
flags.RustFlags = append(flags.RustFlags, deps.depFlags...)
|
2021-02-05 00:29:41 +08:00
|
|
|
flags.LinkFlags = append(flags.LinkFlags, deps.depLinkFlags...)
|
2020-08-26 00:48:19 +08:00
|
|
|
flags.LinkFlags = append(flags.LinkFlags, deps.linkObjects...)
|
2019-08-28 03:03:00 +08:00
|
|
|
|
2021-01-15 08:03:18 +08:00
|
|
|
TransformSrcToBinary(ctx, srcPath, deps, flags, outputFile, deps.linkDirs)
|
2020-08-27 19:48:36 +08:00
|
|
|
|
|
|
|
if binary.stripper.NeedsStrip(ctx) {
|
|
|
|
strippedOutputFile := android.PathForModuleOut(ctx, "stripped", fileName)
|
|
|
|
binary.stripper.StripExecutableOrSharedLib(ctx, outputFile, strippedOutputFile)
|
|
|
|
binary.strippedOutputFile = android.OptionalPathForPath(strippedOutputFile)
|
|
|
|
}
|
|
|
|
|
2019-08-28 03:03:00 +08:00
|
|
|
return outputFile
|
|
|
|
}
|
2020-04-09 21:56:02 +08:00
|
|
|
|
2021-01-26 22:18:53 +08:00
|
|
|
func (binary *binaryDecorator) autoDep(ctx android.BottomUpMutatorContext) autoDep {
|
2020-08-19 02:31:23 +08:00
|
|
|
// Binaries default to dylib dependencies for device, rlib for host.
|
2020-10-02 22:03:23 +08:00
|
|
|
if binary.preferRlib() {
|
2020-09-28 23:56:30 +08:00
|
|
|
return rlibAutoDep
|
2020-12-09 03:43:00 +08:00
|
|
|
} else if ctx.Device() {
|
2020-06-30 05:34:06 +08:00
|
|
|
return dylibAutoDep
|
|
|
|
} else {
|
|
|
|
return rlibAutoDep
|
|
|
|
}
|
|
|
|
}
|
2020-09-28 23:56:30 +08:00
|
|
|
|
2020-09-29 01:22:45 +08:00
|
|
|
func (binary *binaryDecorator) stdLinkage(ctx *depsContext) RustLinkage {
|
2020-10-02 22:03:23 +08:00
|
|
|
if binary.preferRlib() {
|
2020-09-29 01:22:45 +08:00
|
|
|
return RlibLinkage
|
|
|
|
}
|
|
|
|
return binary.baseCompiler.stdLinkage(ctx)
|
2020-09-28 23:56:30 +08:00
|
|
|
}
|
2020-12-15 00:27:52 +08:00
|
|
|
|
|
|
|
func (binary *binaryDecorator) isDependencyRoot() bool {
|
|
|
|
return true
|
|
|
|
}
|