10 lines
149 B
Bash
10 lines
149 B
Bash
export PATH=/c/msys64/mingw$ABI/bin:$PATH
|
|
cd /c/projects/mpir
|
|
./configure ABI=$ABI
|
|
make
|
|
if [ "$ABI" = "32" ]
|
|
then
|
|
rm yasm/Makefile
|
|
fi
|
|
make check
|