diff options
author | 2020-07-29 00:25:42 +0000 | |
---|---|---|
committer | 2020-07-29 00:25:42 +0000 | |
commit | 3feff6c130c5318c04dcba3f9813f534835d15c4 (patch) | |
tree | 377f7565dccbc4ea03218bed09f13d5415fa48e9 /rust/library.go | |
parent | 3d8e506c3ada481f8d55b3d887b25e6a03e8b671 (diff) | |
parent | 45901edb9a6ba7b42136a3ead126f94f76363eb7 (diff) |
Merge changes I4efdf333,I4abaf8e7
* changes:
Ensure hermetic device rust_bindgen.
Generate deps file for rust_bindgen modules.
Diffstat (limited to 'rust/library.go')
-rw-r--r-- | rust/library.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/library.go b/rust/library.go index ac725d7da..4c6da9d86 100644 --- a/rust/library.go +++ b/rust/library.go @@ -340,7 +340,7 @@ func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { deps = library.baseCompiler.compilerDeps(ctx, deps) if ctx.toolchain().Bionic() && (library.dylib() || library.shared()) { - deps = library.baseCompiler.bionicDeps(ctx, deps) + deps = bionicDeps(deps) deps.CrtBegin = "crtbegin_so" deps.CrtEnd = "crtend_so" } |