Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade gcc to v14 #1042

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gcc:13-bookworm
FROM gcc:14-bookworm

# Dependencies for dotnet/runtime native components.
RUN apt-get update && \
Expand All @@ -25,7 +25,7 @@ RUN apt-get update && \

ENV LANG=en_US.utf8

# These symlinks are required because this docker has gcc-12 suffixed with version and gcc-13 unsuffixed in PATH.
# These symlinks are required because this docker has gcc-12 suffixed with version and gcc-14 unsuffixed in PATH.
# In the runtime repo, we (by design) give precedence to suffixed compilers before selecting unsuffixed one in PATH.
RUN ln -s $(command -v gcc) /usr/bin/gcc-13 && \
ln -s $(command -v g++) /usr/bin/g++-13
RUN ln -s $(command -v gcc) /usr/bin/gcc-14 && \
ln -s $(command -v g++) /usr/bin/g++-14
6 changes: 3 additions & 3 deletions src/debian/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@
"platforms": [
{
"architecture": "amd64",
"dockerfile": "src/debian/12/gcc13",
"dockerfile": "src/debian/12/gcc14",
"os": "linux",
"osVersion": "bookworm",
"tags": {
"debian-12-gcc13-amd64-$(System:TimeStamp)-$(System:DockerfileGitCommitSha)": {},
"debian-12-gcc13-amd64$(FloatingTagSuffix)": {}
"debian-12-gcc14-amd64-$(System:TimeStamp)-$(System:DockerfileGitCommitSha)": {},
"debian-12-gcc14-amd64$(FloatingTagSuffix)": {}
}
}
]
Expand Down