Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
f984ada8
Commit
f984ada8
authored
Nov 17, 2011
by
Andrei Paskevich
Browse files
better configure on Windows, thanks to Benjamin Monate
parent
509cc380
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile.in
View file @
f984ada8
...
...
@@ -44,6 +44,7 @@ EXE = @EXE@
STRIP
=
@STRIP@
# other variables
CC
=
@CC@
OCAMLC
=
@OCAMLC@
OCAMLOPT
=
@OCAMLOPT@
OCAMLDEP
=
@OCAMLDEP@
...
...
configure.in
View file @
f984ada8
...
...
@@ -120,13 +120,22 @@ if uname -s | grep -q CYGWIN ; then
EXE=.exe
STRIP='echo "no strip "'
CPULIMIT=cpulimit-win
AC_MSG_RESULT(.exe)
AC_MSG_RESULT(.exe <Cygwin>)
else
if uname -s | grep -q MINGW ; then
EXE=.exe
STRIP=strip
CPULIMIT=cpulimit-win
AC_MSG_RESULT(.exe <MinGW>)
else
EXE=
STRIP=strip
CPULIMIT=cpulimit
AC_MSG_RESULT(<none>)
fi
fi
AC_PROG_CC()
# Check for Ocaml compilers
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment