aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/build/windows/MakeCoq_86git_installer.bat
diff options
context:
space:
mode:
authorGravatar Michael Soegtrop <michael.soegtrop@intel.com>2017-06-08 19:28:41 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-06-26 08:02:24 +0200
commite37a6d70f5964ba773ad52efeb0a079bd5d51894 (patch)
tree57ebbc7b05a86e67e4f2b6194b8c73989e2e8f41 /dev/build/windows/MakeCoq_86git_installer.bat
parent2bdc6e278b74f93c534181a42cd31ec796f1f7c4 (diff)
Fixes bug #5561,#5562 in Windows build system
Diffstat (limited to 'dev/build/windows/MakeCoq_86git_installer.bat')
-rw-r--r--dev/build/windows/MakeCoq_86git_installer.bat22
1 files changed, 20 insertions, 2 deletions
diff --git a/dev/build/windows/MakeCoq_86git_installer.bat b/dev/build/windows/MakeCoq_86git_installer.bat
index 40506318e..c4823103f 100644
--- a/dev/build/windows/MakeCoq_86git_installer.bat
+++ b/dev/build/windows/MakeCoq_86git_installer.bat
@@ -1,8 +1,26 @@
+@ECHO OFF
+
+REM ========== COPYRIGHT/COPYLEFT ==========
+
+REM (C) 2016 Intel Deutschland GmbH
+REM Author: Michael Soegtrop
+
+REM Released to the public by Intel under the
+REM GNU Lesser General Public License Version 2.1 or later
+REM See https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
+
+REM ========== BUILD COQ ==========
+
call MakeCoq_SetRootPath
call MakeCoq_MinGW.bat ^
-arch=64 ^
-installer=Y ^
-coqver=git-v8.6 ^
- -destcyg=%ROOTPATH%\cygwin_coq64_86git_inst ^
- -destcoq=%ROOTPATH%\coq64_86git_inst
+ -destcyg="%ROOTPATH%\cygwin_coq64_86git_inst" ^
+ -destcoq="%ROOTPATH%\coq64_86git_inst"
+
+IF %ERRORLEVEL% NEQ 0 (
+ ECHO MakeCoq_86git_installer.bat failed with error code %ERRORLEVEL%
+ EXIT /b %ERRORLEVEL%
+)