diff options
-rw-r--r-- | meta/lib/oeqa/selftest/cases/reproducible.py | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/rust/rust_1.71.1.bb | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py index 14ccb0b24d..80e830136f 100644 --- a/meta/lib/oeqa/selftest/cases/reproducible.py +++ b/meta/lib/oeqa/selftest/cases/reproducible.py | |||
@@ -16,8 +16,6 @@ import os | |||
16 | import datetime | 16 | import datetime |
17 | 17 | ||
18 | exclude_packages = [ | 18 | exclude_packages = [ |
19 | 'rust-rustdoc', | ||
20 | 'rust-dbg' | ||
21 | ] | 19 | ] |
22 | 20 | ||
23 | def is_excluded(package): | 21 | def is_excluded(package): |
diff --git a/meta/recipes-devtools/rust/rust_1.71.1.bb b/meta/recipes-devtools/rust/rust_1.71.1.bb index 3d176e54c1..bc076997de 100644 --- a/meta/recipes-devtools/rust/rust_1.71.1.bb +++ b/meta/recipes-devtools/rust/rust_1.71.1.bb | |||
@@ -141,13 +141,14 @@ python do_configure() { | |||
141 | config.add_section("build") | 141 | config.add_section("build") |
142 | config.set("build", "submodules", e(False)) | 142 | config.set("build", "submodules", e(False)) |
143 | config.set("build", "docs", e(False)) | 143 | config.set("build", "docs", e(False)) |
144 | config.set("build", "tools", ["rust-demangler",]) | ||
144 | 145 | ||
145 | rustc = d.expand("${WORKDIR}/rust-snapshot/bin/rustc") | 146 | rustc = d.expand("${WORKDIR}/rust-snapshot/bin/rustc") |
146 | config.set("build", "rustc", e(rustc)) | 147 | config.set("build", "rustc", e(rustc)) |
147 | 148 | ||
148 | # Support for the profiler runtime to generate e.g. coverage report, | 149 | # Support for the profiler runtime to generate e.g. coverage report, |
149 | # PGO etc. | 150 | # PGO etc. |
150 | config.set("build", "profiler", e(True)) | 151 | config.set("build", "profiler", e(False)) |
151 | 152 | ||
152 | cargo = d.expand("${WORKDIR}/rust-snapshot/bin/cargo") | 153 | cargo = d.expand("${WORKDIR}/rust-snapshot/bin/cargo") |
153 | config.set("build", "cargo", e(cargo)) | 154 | config.set("build", "cargo", e(cargo)) |