diff options
| author | herbelin | 2003-09-24 10:28:07 +0000 |
|---|---|---|
| committer | herbelin | 2003-09-24 10:28:07 +0000 |
| commit | 22d0ce23a0865c1a68636d3feb1f490b13a49fb9 (patch) | |
| tree | dbbb7aa1a310190925c29703089b4eb916791639 /tools/check-v8 | |
| parent | 79798540eba9424b14eccb3a6e6fd486cd40c3b2 (diff) | |
Passage options via COQFLAGS plutot que OPT
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4472 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tools/check-v8')
| -rwxr-xr-x | tools/check-v8 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/check-v8 b/tools/check-v8 index 30ab7aed23..ef26f9856b 100755 --- a/tools/check-v8 +++ b/tools/check-v8 @@ -8,7 +8,8 @@ mv /tmp/v8.$$ v8 cd v8 rm description make clean -make OPT=-translate || { echo ---- Failed to translate; exit 1; } +make COQFLAGS='-translate -q $(OPT) $(COQLIBS) $(COQ_XML)' || \ + { echo ---- Failed to translate; exit 1; } echo ------------------ Upgrading v8 files ------------------------- v8files=`find . -name \*.v8` for i in $v8files; do @@ -18,6 +19,6 @@ for i in $v8files; do done echo ------------------ Recompiling v8 files ----------------------- make clean -make OPT=-v8 || { echo ---- Failed to recompile; exit 1; } +make || { echo ---- Failed to recompile; exit 1; } make clean # to save disk space echo ------------------ Translation completed ---------------------- |
