diff options
Diffstat (limited to 'rust/compiler.go')
-rw-r--r-- | rust/compiler.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/compiler.go b/rust/compiler.go index bc034d7cc..1091585d3 100644 --- a/rust/compiler.go +++ b/rust/compiler.go @@ -77,10 +77,10 @@ type BaseCompilerProperties struct { Lints *string // flags to pass to rustc. To enable configuration options or features, use the "cfgs" or "features" properties. - Flags []string `android:"path,arch_variant"` + Flags []string `android:"arch_variant"` // flags to pass to the linker - Ld_flags []string `android:"path,arch_variant"` + Ld_flags []string `android:"arch_variant"` // list of rust rlib crate dependencies Rlibs []string `android:"arch_variant"` |