diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-09-04 15:11:05 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-09-06 16:01:47 +0200 |
| commit | 4e7808a5c3c24e4986ffe0e2fbbe748f3fa23850 (patch) | |
| tree | bf1da700b9e882387685861d6acfd8bc2b06ce94 | |
| parent | 1b39b43479f0a2e27594f8a5c1720411b74d7f79 (diff) | |
| download | rust-4e7808a5c3c24e4986ffe0e2fbbe748f3fa23850.tar.gz rust-4e7808a5c3c24e4986ffe0e2fbbe748f3fa23850.zip | |
Update to new `Builder` API
| -rw-r--r-- | src/bootstrap/src/core/build_steps/gcc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/gcc.rs b/src/bootstrap/src/core/build_steps/gcc.rs index e1a9096447a..969565e0fd5 100644 --- a/src/bootstrap/src/core/build_steps/gcc.rs +++ b/src/bootstrap/src/core/build_steps/gcc.rs @@ -36,7 +36,7 @@ pub enum GccBuildStatus { /// GCC, it's fine for us to not try to avoid doing so. pub fn prebuilt_gcc_config(builder: &Builder<'_>, target: TargetSelection) -> GccBuildStatus { // Initialize the gcc submodule if not initialized already. - builder.update_submodule("src/gcc"); + builder.config.update_submodule("src/gcc"); // FIXME (GuillaumeGomez): To be done once gccjit has been built in the CI. // builder.config.maybe_download_ci_gcc(); |
