pcsx-redux/distcc-make.sh
Nicolas Pixel Noble 4e06674ba5 Flipping compiler.
2022-04-30 21:17:41 -07:00

13 lines
239 B
Bash
Executable file

#!/bin/sh
# This is for my own build environment, so it won't be much useful for anyone else.
export DISTCC_NO_REWRITE_CROSS=1
export DISTCC_HOSTS=10.12.1.2/60,lzo
export CC="distcc"
export CXX="distcc"
export JOBS=60
make -j $JOBS $@