Ryujinx-SDL2-CS/linux-build/compile
Tudor Brindus 0c9a67cd45 Check out SDL sources only once
This prevents weird issues where a commit can happen between when the
i386 binaries are built and when amd64 binaries are built, and also
speeds up the workflow a bit.
2020-05-06 16:07:55 -04:00

12 lines
132 B
Bash
Executable File

#!/bin/bash
set -euf -o pipefail
cd /src
rm -rf build
mkdir build
cd build
../configure --prefix=/io
make -j$(nproc)
make install