summaryrefslogtreecommitdiff
path: root/rust/binary.go
diff options
context:
space:
mode:
authorIvan Lozano <ivanlozano@google.com>2020-07-29 00:25:42 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-07-29 00:25:42 +0000
commit3feff6c130c5318c04dcba3f9813f534835d15c4 (patch)
tree377f7565dccbc4ea03218bed09f13d5415fa48e9 /rust/binary.go
parent3d8e506c3ada481f8d55b3d887b25e6a03e8b671 (diff)
parent45901edb9a6ba7b42136a3ead126f94f76363eb7 (diff)
Merge changes I4efdf333,I4abaf8e7
* changes: Ensure hermetic device rust_bindgen. Generate deps file for rust_bindgen modules.
Diffstat (limited to 'rust/binary.go')
-rw-r--r--rust/binary.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/binary.go b/rust/binary.go
index 1e9e11990..1a82c9208 100644
--- a/rust/binary.go
+++ b/rust/binary.go
@@ -86,7 +86,7 @@ func (binary *binaryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
deps = binary.baseCompiler.compilerDeps(ctx, deps)
if ctx.toolchain().Bionic() {
- deps = binary.baseCompiler.bionicDeps(ctx, deps)
+ deps = bionicDeps(deps)
deps.CrtBegin = "crtbegin_dynamic"
deps.CrtEnd = "crtend_android"
}