No SYMPREFIX should be used for 64-bit Windows

Earlier builds of mingw-w64 misguidedly used the _ prefix, but not
current ones. Thanks to Fridrich Strba.
This commit is contained in:
Tor Lillqvist 2010-09-27 13:22:54 +03:00
parent 8d93dfa923
commit ee7a922cba
1 changed files with 4 additions and 1 deletions

View File

@ -863,7 +863,10 @@ AC_MSG_CHECKING([whether symbols are prefixed])
case "$host_os" in
mingw*)
SYMPREFIX='_'
case "$host_cpu" in
x86_64) SYMPREFIX='' ;;
*) SYMPREFIX='_' ;;
esac
;;
darwin* | rhapsody* | machten*)
SYMPREFIX='_'