diff options
author | Andreas Hindborg <a.hindborg@samsung.com> | 2023-09-04 13:29:12 +0200 |
---|---|---|
committer | Danilo Krummrich <dakr@redhat.com> | 2023-11-22 22:01:11 +0100 |
commit | c973555ab5648a3faddbd08b336f4b22de63e992 (patch) | |
tree | 0182daa003d4f2e36cb4282b781e845b70c94984 | |
parent | 4f54e936ee9e784db8b82dff7169230de55e4231 (diff) |
rust: enable allocator API in modules for Box::try_new()
-rw-r--r-- | scripts/Makefile.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 82e3fb19fdaf..f8468cfab322 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -262,7 +262,7 @@ $(obj)/%.lst: $(src)/%.c FORCE # Compile Rust sources (.rs) # --------------------------------------------------------------------------- -rust_allowed_features := new_uninit +rust_allowed_features := new_uninit,allocator_api # `--out-dir` is required to avoid temporaries being created by `rustc` in the # current working directory, which may be not accessible in the out-of-tree |