diff options
Diffstat (limited to 'lib/erl_interface/configure.in')
| -rw-r--r-- | lib/erl_interface/configure.in | 15 | 
1 files changed, 14 insertions, 1 deletions
| diff --git a/lib/erl_interface/configure.in b/lib/erl_interface/configure.in index 0a8fbf513c..a155ceef7e 100644 --- a/lib/erl_interface/configure.in +++ b/lib/erl_interface/configure.in @@ -1,7 +1,7 @@  #                                               -*- Autoconf -*-  # %CopyrightBegin%  # -# Copyright Ericsson AB 2000-2016. All Rights Reserved. +# Copyright Ericsson AB 2000-2018. All Rights Reserved.  #  # Licensed under the Apache License, Version 2.0 (the "License");  # you may not use this file except in compliance with the License. @@ -106,6 +106,19 @@ if test $ac_cv_sizeof_long = 8; then    CFLAGS="$CFLAGS -DEI_64BIT"  fi +LM_HARDWARE_ARCH + +AC_MSG_CHECKING(for unaligned word access) +case "$ARCH" in +    x86|amd64) +	AC_MSG_RESULT(yes: x86 or amd64) +	AC_DEFINE(HAVE_UNALIGNED_WORD_ACCESS, 1, [Define if hw supports unaligned word access]) +	;; +    *) +	AC_MSG_RESULT(no) +	;; +esac +  AC_CHECK_TOOL(AR, ar, false)  if test "$AR" = false; then    AC_MSG_ERROR([No 'ar' command found in PATH]) | 
