From: darcagn <da...@us...> - 2024-05-09 19:24:41
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 716ab792d9dad5c1fcc9a55c5f495fa6c1a9e12a (commit) from e6608bb5ff7506b95b3d38df70aa91d70f668c07 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 716ab792d9dad5c1fcc9a55c5f495fa6c1a9e12a Author: darcagn <da...@pr...> Date: Thu May 9 13:23:32 2024 -0600 Dockerfile: Fix flex errors building GCC, dependency issues with GDB, and disable ARM build (#558) ----------------------------------------------------------------------- Summary of changes: utils/dc-chain/docker/Dockerfile | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/utils/dc-chain/docker/Dockerfile b/utils/dc-chain/docker/Dockerfile index e4fd6de2..8081ce11 100644 --- a/utils/dc-chain/docker/Dockerfile +++ b/utils/dc-chain/docker/Dockerfile @@ -14,20 +14,23 @@ MAINTAINER KallistiOS <cad...@li...> # Installing prerequisites RUN apk --update add --no-cache \ - build-base \ - patch \ - bash \ - texinfo \ - libjpeg-turbo-dev \ - libpng-dev \ - curl \ - wget \ - git \ - python3 \ - subversion \ - gmp-dev \ - elfutils-dev \ - && rm -rf /var/cache/apk/* + build-base \ + gmp-dev \ + mpfr-dev \ + mpc1-dev \ + patch \ + bash \ + texinfo \ + flex \ + curl \ + wget \ + git \ + subversion \ + elfutils-dev \ + libjpeg-turbo-dev \ + libpng-dev \ + python3 \ + && rm -rf /var/cache/apk/* # Making Sega Dreamcast toolchains # You may adapt the KallistiOS repository URL if needed @@ -36,7 +39,7 @@ ARG makejobs=2 RUN mkdir -p /opt/toolchains/dc \ && git clone https://git.code.sf.net/p/cadcdev/kallistios /opt/toolchains/dc/kos || git clone https://github.com/KallistiOS/KallistiOS.git /opt/toolchains/dc/kos \ && cd /opt/toolchains/dc/kos/utils/dc-chain \ - && make all toolchain_profile=$dc_chain makejobs=$makejobs use_custom_dependencies=1 + && make build toolchain_profile=$dc_chain makejobs=$makejobs \ && rm -rf /opt/toolchains/dc/kos # Stage 2 hooks/post-receive -- A pseudo Operating System for the Dreamcast. |