Skip to content

Commit 2f4013c

Browse files
committed
configury: fix asm atomic detection
there is no need to look for an assembly file when BUILTIN_GCC is used Fixes #3032 Refs #3036 Signed-off-by: Gilles Gouaillardet <[email protected]>
1 parent efc3a98 commit 2f4013c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/opal_config_asm.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dnl Copyright (c) 2004-2005 The Regents of the University of California.
1111
dnl All rights reserved.
1212
dnl Copyright (c) 2008-2015 Cisco Systems, Inc. All rights reserved.
1313
dnl Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
14-
dnl Copyright (c) 2015-2016 Research Organization for Information Science
14+
dnl Copyright (c) 2015-2017 Research Organization for Information Science
1515
dnl and Technology (RIST). All rights reserved.
1616
dnl Copyright (c) 2014-2016 Los Alamos National Security, LLC. All rights
1717
dnl reserved.
@@ -1239,7 +1239,7 @@ AC_DEFUN([OPAL_ASM_FIND_FILE], [
12391239
AC_REQUIRE([AC_PROG_GREP])
12401240
AC_REQUIRE([AC_PROG_FGREP])
12411241
1242-
if test "$opal_cv_asm_arch" != "WINDOWS" && test "$opal_cv_asm_builtin" != "BUILTIN_SYNC" && test "$opal_cv_asm_builtin" != "BUILTIN_OSX" ; then
1242+
if test "$opal_cv_asm_arch" != "WINDOWS" && test "$opal_cv_asm_builtin" != "BUILTIN_SYNC" && test "$opal_cv_asm_builtin" != "BUILTIN_GCC" && test "$opal_cv_asm_builtin" != "BUILTIN_OSX" ; then
12431243
# see if we have a pre-built one already
12441244
AC_MSG_CHECKING([for pre-built assembly file])
12451245
opal_cv_asm_file=""

0 commit comments

Comments
 (0)