summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 3517728..39d1668 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -31,7 +31,7 @@ stage('Build') {
stage("Linux 64 Bit Build") {
sh '''#!/bin/bash
- GCC_PATH=/master/DEV-Tools/gcc-suite/1.4.0/x86-linux64/gcc-9.1.0 make
+ GCC_PATH=/master/DEV-Tools/gcc-suite/1.5.0/x86-linux64/gcc make
'''
}
}
@@ -55,12 +55,12 @@ stage('Build') {
rm -f openssl-1.0.2r/NUL
rm -Rf openssl-1.0.2r
echo "Done."
- cp -Rvf /c/dev-tools/gcc-suite/1.4.0/x86-mingw64/gcc-9.1.0 $WS/
+ cp -Rvf /c/dev-tools/gcc-suite/1.5.0/x86-mingw64/gcc $WS/
cp $WS/gcc-9.1.0/bin/make.exe $WS/gcc-9.1.0/bin/mingw32-make.exe
export PATH=$WS/gcc-9.1.0/bin:/c/dev-tools/msys/x86/usr/bin:$PATH
export PATH=/c/dev-tools/Python/2.7/x86-windows:$PATH
- export CC=$WS/gcc-9.1.0/bin/gcc
- export CXX=$WS/gcc-9.1.0/bin/g++
+ export CC=$WS/gcc/bin/gcc
+ export CXX=$WS/gcc/bin/g++
gcc -v
make -f Makefile.mingw64 all
rm -Rf build.$(ARCH)