Skip to content

Commit b155c18

Browse files
authored
[CI][HIP] Install libstdc++-12-dev without gcc12. (#13752)
This partially reverts the changes made in #13619 to use libstdc++-12-dev without gcc12. This also seems to work fine to build dpc++ within the docker. But should come without the CI failures that might have been induced by the gcc uplift: - #13736 - #13735 If the above issues were not caused by the gcc version uplift, then this patch should also reveal that. Signed-off-by: JackAKirk <[email protected]>
1 parent 933edf3 commit b155c18

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

devops/containers/ubuntu2204_build.Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ COPY scripts/install_build_tools.sh /install.sh
1313
RUN /install.sh
1414

1515
RUN apt install -yqq libnuma-dev wget gnupg2 && \
16-
apt-get install -yqq gcc-12 g++-12 libstdc++-12-dev && \
17-
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 100 && \
18-
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 100
16+
apt-get install -yqq libstdc++-12-dev
1917

2018
RUN wget https://repo.radeon.com/amdgpu-install/6.1/ubuntu/jammy/amdgpu-install_6.1.60100-1_all.deb && \
2119
apt install -yqq ./amdgpu-install_6.1.60100-1_all.deb && \

0 commit comments

Comments
 (0)