Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Kobzol committed Dec 31, 2024
1 parent 2a2cb1d commit 1a3a4de
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
16 changes: 8 additions & 8 deletions src/bootstrap/src/core/build_steps/gcc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ impl Step for Gcc {

// Download dependencies into the build directory, to avoid modifying the source directory
// The configure script should automatically find them in the build directory
// command(root.join("contrib/download_prerequisites"))
// The script sadly tries to write symlinks to the source directory, even if we
// actually download the dependencies elsewhere.
// .allow_failure()
// .current_dir(&root)
// .arg("--directory")
// .arg(&deps_dir)
// .run(builder);
command(root.join("contrib/download_prerequisites"))
// The script sadly tries to write symlinks to the source directory, even if we
// actually download the dependencies elsewhere.
// .allow_failure()
.current_dir(&root)
// .arg("--directory")
// .arg(&deps_dir)
.run(builder);

let mut configure_cmd = command(root.join("configure"));
configure_cmd
Expand Down
3 changes: 0 additions & 3 deletions src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ RUN yum upgrade -y && \
unzip \
wget \
xz \
gmp-devel \
mpfr-devel \
mpc-devel \
zlib-devel.i686 \
zlib-devel.x86_64 \
&& yum clean all
Expand Down
1 change: 1 addition & 0 deletions src/ci/github-actions/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ try:
- image: dist-x86_64-linux
env:
CODEGEN_BACKENDS: llvm,cranelift
READ_ONLY_SRC: "0"
<<: *job-linux-16c

# Main CI jobs that have to be green to merge a commit into master
Expand Down

0 comments on commit 1a3a4de

Please sign in to comment.