Skip to content

Commit

Permalink
docker/alpine: disable IPO [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Dec 8, 2023
1 parent 06ef969 commit 1f51065
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker/alpine-normal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,12 @@ RUN mkdir proj \
export PROJ_DB_CACHE_DIR="$HOME/.ccache"; \
ccache -M 100M; \
fi \
# IPO disabled since it crashes with gcc 13.2.1
&& cmake . \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_IPO=ON \
-DENABLE_IPO=OFF \
-DBUILD_TESTING=OFF \
&& make -j$(nproc) \
&& make install \
Expand Down
3 changes: 2 additions & 1 deletion docker/alpine-small/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,12 @@ RUN mkdir proj \
export PROJ_DB_CACHE_DIR="$HOME/.ccache"; \
ccache -M 100M; \
fi \
# IPO disabled since it crashes with gcc 13.2.1
&& cmake . \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_IPO=ON \
-DENABLE_IPO=OFF \
-DBUILD_TESTING=OFF \
&& make -j$(nproc) \
&& make install \
Expand Down

0 comments on commit 1f51065

Please sign in to comment.