Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN \
apt-get install -y \
autoconf \
cmake \
g++ \
gcc \
clang \
lld \
git \
glslang-tools \
libasound2t64 \
Expand Down Expand Up @@ -75,13 +75,18 @@ RUN \
git clone https://git.eden-emu.dev/eden-emu/eden.git && \
cd eden/ && \
git checkout -f ${EDEN_VERSION} && \
curl -L -o /eden.profdata 'https://github.com/Eden-CI/PGO/raw/main/eden.profdata' && \
cmake -B build -GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_C_FLAGS="-march=x86-64-v3 -O2" \
-DCMAKE_CXX_FLAGS="-march=x86-64-v3 -O2" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_C_FLAGS="-fprofile-instr-use=/eden.profdata" \
-DCMAKE_CXX_FLAGS="-fprofile-instr-use=/eden.profdata" \
-DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=lld" \
-DYUZU_BUILD_PRESET=v3 \
-DUSE_DISCORD_PRESENCE=ON \
-DYUZU_ENABLE_LTO=OFF \
-DENABLE_LTO=ON \
-DYUZU_USE_CPM=OFF \
-DCPM_USE_LOCAL_PACKAGES=ON \
-DYUZU_USE_BUNDLED_FFMPEG=OFF \
Expand Down Expand Up @@ -126,6 +131,8 @@ RUN \
apt-get update && \
apt-get install -y --no-install-recommends \
libavcodec61 \
libavfilter-extra10 \
libboost-atomic1.83.0 \
libboost-context1.83.0 \
libboost-filesystem1.83.0 \
libcubeb0 \
Expand All @@ -134,6 +141,7 @@ RUN \
liblz4-1 \
libopus0 \
libqt6charts6 \
libqt6concurrent6 \
libqt6multimedia6 \
libqt6webenginewidgets6 \
libquazip1-qt6-1t64 \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **30.06.26:** - Optimize build to match PGO v3 builds for better performance.
* **05.05.26:** - Rebase to Debian Trixie, build Eden from source, remove arm64 tag.
* **17.03.26:** - Ingest releases from self hosted git.
* **18.02.26:** - Initial Version.
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ init_diagram: |
"eden:latest" <- Base Images
# changelog
changelogs:
- {date: "30.06.26:", desc: "Optimize build to match PGO v3 builds for better performance."}
- {date: "05.05.26:", desc: "Rebase to Debian Trixie, build Eden from source, remove arm64 tag."}
- {date: "17.03.26:", desc: "Ingest releases from self hosted git."}
- {date: "18.02.26:", desc: "Initial Version."}