mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-22 23:15:35 +00:00
0c9a67cd45
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.
12 lines
132 B
Bash
Executable file
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
|