ACE
C++ toolchain for portable game development.
Supported Targets: Linux, MinGW
Supported Architectures: x86-64
Linux Sysroot: Debian 12
MinGW Runtime: UCRT
Build
Build instructions for Linux.
# Install dependencies.
sudo apt install bash docker.io git sudo
# Clone project.
git clone git@hub.mos.ru:qis/ace
# Build project.
cd ace && src/build.sh
Install
Installation instructions.
Linux
# Install dependencies.
sudo apt install coreutils sudo tar wget xz-utils
# Install toolchain.
wget -O /tmp/ace.tar.xz https://de.harm.dev/ace-0.2.tar.xz && \
sudo rm -rf /opt/ace && sudo mkdir -p /opt/ace && \
sudo tar xf /tmp/ace.tar.xz -C /opt/ace --strip-components=1 && \
rm /tmp/ace.tar.xz
sudo tee /etc/profile.d/ace.sh >/dev/null <<'EOF'
export ACE="/opt/ace"
EOF
sudo chmod 0755 /etc/profile.d/ace.sh
source /etc/profile.d/ace.sh
Windows
- Extract Ace-0.1.7z to
C:. - Set the system environment variable
ACEtoC:\Ace.