0
0
mirror of https://gitlab.torproject.org/tpo/core/tor.git synced 2024-09-20 12:22:14 +02:00

Do not use unaligned access on some more archs

svn:r4992
This commit is contained in:
Peter Palfrader 2005-09-10 20:44:05 +00:00
parent b0a5ba4248
commit 0ceab199b0

View File

@ -368,6 +368,14 @@ case $host in
ia64-*-* | arm-*-* | sparc-*-* )
tor_cv_unaligned_ok=no
;;
# On the following architectures unaligned access works, but is not done in
# hardware. This means that when you try to do unaligned access the kernel
# gets to sort out an exception and then work around to somehow make your
# reqest work, which is quite expensive. Therefore it's probably better to
# not even do it.
alpha-*-* | mips-*-* | mipsel-*-* )
tor_cv_unaligned_ok=no
;;
*)
AC_CACHE_CHECK([whether unaligned int access is allowed], tor_cv_unaligned_ok,
[AC_RUN_IFELSE([AC_LANG_SOURCE(