Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Aug 19, 2024
1 parent 5551254 commit 52c74be
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions Fedora-rawhide/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,14 @@ RUN dnf -y upgrade && \
json-devel \
tar && \
dnf clean all && \

#install TBB
wget https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.8.0.tar.gz
tar xf v2021.8.0.tar.gz
mkdir build
cd build
sed -i '1i #include <cstdlib>' /oneTBB-2021.8.0/test/common/utils_assert.h
cmake -DCMAKE_BUILD_TYPE=Release -DTBB_STRICT:BOOL=OFF -DTBB_TEST:BOOL=OFF ../oneTBB-2021.8.0
make
make install
wget https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.8.0.tar.gz && \
tar xf v2021.8.0.tar.gz && \
mkdir build && \
cd build && \
sed -i '1i #include <cstdlib>' /oneTBB-2021.8.0/test/common/utils_assert.h && \
cmake -DCMAKE_BUILD_TYPE=Release -DTBB_STRICT:BOOL=OFF -DTBB_TEST:BOOL=OFF ../oneTBB-2021.8.0 && \
make && \
make install

ENV CGAL_TEST_PLATFORM="Fedora-rawhide"
ENV CGAL_CMAKE_FLAGS="('-DCGAL_HEADER_ONLY:BOOL=TRUE')"
Expand Down

0 comments on commit 52c74be

Please sign in to comment.