Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marcus Hoffmann
nettle
Commits
08b08e08
Commit
08b08e08
authored
Nov 24, 2011
by
Niels Möller
Browse files
(EMULATOR): Set for cross compilation only.
Rev: nettle/ChangeLog:1.234 Rev: nettle/configure.ac:1.50
parent
65c05368
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
08b08e08
...
...
@@ -9,7 +9,7 @@
environment of run-tests.
* configure.ac (EMULATOR): New substituted variable. Set to wine
or wine64 when compiling for windows, otherwise empty.
or wine64 when
cross
compiling for windows, otherwise empty.
* config.make.in (EMULATOR): Set from autoconf value.
...
...
configure.ac
View file @
08b08e08
...
...
@@ -273,15 +273,16 @@ case "$host_os" in
LIBHOGWEED_FORLINK='cyghogweed-$(LIBHOGWEED_MAJOR)-$(LIBHOGWEED_MINOR).dll'
;;
esac
# FIXME: Support native compilation using mingw on windows.
case "$ABI" in
64)
EMULATOR=wine64
;;
*)
EMULATOR=wine
;;
esac
if test "x$cross_compiling" = xyes ; then
case "$ABI" in
64)
EMULATOR=wine64
;;
*)
EMULATOR=wine
;;
esac
fi
LIBNETTLE_SONAME=''
LIBNETTLE_FILE='libnettle.dll.a'
LIBNETTLE_FILE_SRC='$(LIBNETTLE_FILE)'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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