Update build_tc.sh

This commit is contained in:
Daniel Stankewitz 2018-06-29 15:03:02 +02:00 committed by GitHub
parent a3c537fb1c
commit 3bcda300bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,7 @@ function compile {
echo "Compiling '$1' ..."; echo "Compiling '$1' ...";
cd $SRC/$1 cd $SRC/$1
make clean make clean
CC=cl.exe ./configure --prefix=$BUILD $2 CC=cl.exe LD=link.exe ./configure --prefix=$BUILD $2
make -j $CPU_CORES make -j $CPU_CORES
make install make install
} }