aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/build/windows/MakeCoq_84pl6_abs_ocaml.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_84pl6_abs_ocaml.bat
parent2bdc6e278b74f93c534181a42cd31ec796f1f7c4 (diff)
Fixes bug #5561,#5562 in Windows build system
Diffstat (limited to 'dev/build/windows/MakeCoq_84pl6_abs_ocaml.bat')
-rw-r--r--dev/build/windows/MakeCoq_84pl6_abs_ocaml.bat22
1 files changed, 20 insertions, 2 deletions
diff --git a/dev/build/windows/MakeCoq_84pl6_abs_ocaml.bat b/dev/build/windows/MakeCoq_84pl6_abs_ocaml.bat
index bdcb01db9..9dbce1920 100644
--- a/dev/build/windows/MakeCoq_84pl6_abs_ocaml.bat
+++ b/dev/build/windows/MakeCoq_84pl6_abs_ocaml.bat
@@ -1,3 +1,16 @@
+@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 ^
@@ -6,5 +19,10 @@ call MakeCoq_MinGW.bat ^
-ocaml=Y ^
-make=Y ^
-coqver=8.4pl6 ^
- -destcyg=%ROOTPATH%\cygwin_coq64_84pl6_abs ^
- -destcoq=%ROOTPATH%\coq64_84pl6_abs
+ -destcyg="%ROOTPATH%\cygwin_coq64_84pl6_abs" ^
+ -destcoq="%ROOTPATH%\coq64_84pl6_abs"
+
+IF %ERRORLEVEL% NEQ 0 (
+ ECHO MakeCoq_84pl6_abs_ocaml.bat failed with error code %ERRORLEVEL%
+ EXIT /b %ERRORLEVEL%
+)