Skip to content

Commit feb7cbb

Browse files
Install the right gcc component to enable -latomic in the build container.
1 parent 3001100 commit feb7cbb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dockerfiles/build_manylinux_x86_64.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ RUN ./install_ninja.sh "${CMAKE_VERSION}" && rm -rf /install-ninja
4141

4242
######## Yum Packages #######
4343
# TODO: Remove elfutils-devel (https://github.com/nod-ai/TheRock/issues/91)
44-
# TODO: Remove libatomic-static ()
44+
# TODO: Figure out why gcc-toolset-12-libatomic-devel doesn't install with the
45+
# rest of the dev toolset.
4546
RUN yum install -y epel-release && \
46-
yum install -y clang lld && \
47+
yum install -y gcc-toolset-12-libatomic-devel && \
4748
yum install -y numactl-devel elfutils-libelf-devel vim-common git-lfs && \
4849
yum install -y bzip2-devel && \
4950
yum install -y gtest-devel && \
5051
yum install -y elfutils-devel && \
51-
yum install -y libatomic-static && \
5252
yum clean all && \
5353
rm -rf /var/cache/yum
5454

0 commit comments

Comments
 (0)