aboutsummaryrefslogtreecommitdiffstats
path: root/src/configure.sh
diff options
context:
space:
mode:
authorckeller <ckeller@users.noreply.github.com>2019-04-12 14:13:00 +0200
committerGitHub <noreply@github.com>2019-04-12 14:13:00 +0200
commit02544aa0e9f2693de4b02a87d8e66cc8e72e3c8b (patch)
treeec18dc8768ea8ca45ed380ffda289fe204a822a5 /src/configure.sh
parentad491f845f6fb3e88ff1169ac472f194d12306d2 (diff)
downloadsmtcoq-02544aa0e9f2693de4b02a87d8e66cc8e72e3c8b.tar.gz
smtcoq-02544aa0e9f2693de4b02a87d8e66cc8e72e3c8b.zip
Error message to state that tactics are not supported with native-coq (#47)
* Better error message for failing tactics with native-coq
Diffstat (limited to 'src/configure.sh')
-rwxr-xr-xsrc/configure.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/configure.sh b/src/configure.sh
index 3def21c..21b7232 100755
--- a/src/configure.sh
+++ b/src/configure.sh
@@ -10,6 +10,7 @@ rm -f ${pre}smtcoq_plugin.ml4
rm -f ${pre}versions/native/Structures.v
rm -f ${pre}g_smtcoq.ml4
rm -f ${pre}smtcoq_plugin.mlpack
+rm -f ${pre}Tactics.v
rm -f ${pre}versions/standard/Int63/Int63.v
rm -f ${pre}versions/standard/Int63/Int63Native.v
rm -f ${pre}versions/standard/Int63/Int63Op.v
@@ -23,6 +24,7 @@ if [ $@ -a $@ = -native ]; then
cp ${pre}versions/native/Makefile ${pre}Makefile
cp ${pre}versions/native/smtcoq_plugin_native.ml4 ${pre}smtcoq_plugin.ml4
cp ${pre}versions/native/Structures_native.v ${pre}versions/native/Structures.v
+ cp ${pre}versions/native/Tactics_native.v ${pre}Tactics.v
else
cp ${pre}versions/standard/_CoqProject ${pre}_CoqProject
cp ${pre}versions/standard/Makefile.local ${pre}Makefile.local
@@ -35,5 +37,6 @@ else
cp ${pre}versions/standard/Int63/Int63Properties_standard.v ${pre}versions/standard/Int63/Int63Properties.v
cp ${pre}versions/standard/Array/PArray_standard.v ${pre}versions/standard/Array/PArray.v
cp ${pre}versions/standard/Structures_standard.v ${pre}versions/standard/Structures.v
+ cp ${pre}versions/standard/Tactics_standard.v ${pre}Tactics.v
coq_makefile -f _CoqProject -o Makefile
fi