ext-windows-bin/boost/start_build.sh

20 lines
543 B
Bash

#!/bin/bash
# Kicks off the build script using the linux-mingw build container.
if [ "$#" -ne 2 ]; then
echo "usage: $0 <Boost source directory> <Build script>"
exit
fi
UID=`id -u`
GID=`id -g`
SRC_DIR=$(readlink -e $1)
SRC_DIR_BASENAME=$(basename ${SRC_DIR})
SCRIPT=$(readlink -e $2)
SCRIPT_BASENAME=$(basename ${SCRIPT})
cp ${SCRIPT} ${SRC_DIR}
docker run -v ${SRC_DIR}:/${SRC_DIR_BASENAME} -w /${SRC_DIR_BASENAME} -u root -t yuzuemu/build-environments:linux-mingw /bin/bash /${SRC_DIR_BASENAME}/${SCRIPT_BASENAME} ${UID} ${GID}