Skip to content

Commit

Permalink
Update Binutils and GCC release (#167)
Browse files Browse the repository at this point in the history
GCC tarball was updated in-place.  This now allows building of Julia!
  • Loading branch information
staticfloat authored Feb 24, 2022
1 parent bba80d8 commit b1ef4fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion linux/package_linux.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ artifact_hash, tarball_path, = debootstrap(arch, image; archive, packages) do ro
gcc_install_cmd = """
cd /usr/local
curl -L $(repo_release_url)/GCC.v9.1.0.$(host_triplet)-target_libc+glibc-target_os+linux-target_arch+x86_64.tar.gz | tar zx
curl -L $(repo_release_url)/Binutils.v2.24.0.$(host_triplet)-target_libc+glibc-target_os+linux-target_arch+x86_64.tar.gz | tar zx
curl -L $(repo_release_url)/Binutils.v2.38.0.x86_64-linux-gnu-target_libc+glibc-target_os+linux-target_arch+x86_64.tar.gz | tar zx
curl -L $(repo_release_url)/Zlib.v1.2.12.$(host_triplet).tar.gz | tar zx
cd /usr/local/$(host_triplet)/
curl -L $(repo_release_url)/Glibc.v2.12.2.$(host_triplet).tar.gz | tar zx
cd /usr/local/x86_64-linux-gnu/usr
curl -L $(repo_release_url)/LinuxKernelHeaders.v5.15.14.x86_64-linux-target_os+linux-target_arch+x86_64.tar.gz | tar zx
"""
gcc_symlink_cmd = """
Expand Down

0 comments on commit b1ef4fb

Please sign in to comment.