]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libatomic/configure.tgt
Work around Solaris ld bug linking __tls_get_addr on 64-bit x86
[thirdparty/gcc.git] / libatomic / configure.tgt
index b9e5d6ce015d4ebefafe848a54a75615feda9c8e..ecbb7d33cc11b451f83479009e9d2b43510f3f76 100644 (file)
@@ -1,5 +1,5 @@
 # -*- shell-script -*-
-#  Copyright (C) 2012-2013 Free Software Foundation, Inc.
+#  Copyright (C) 2012-2019 Free Software Foundation, Inc.
 #  Contributed by Richard Henderson <rth@redhat.com>.
 #
 #  This file is part of the GNU Atomic Library (libatomic).
 # Map the target cpu to an ARCH sub-directory.  At the same time,
 # work out any special compilation flags as necessary.
 
+# Give operating systems the opportunity to discard XCFLAGS modifications based
+# on ${target_cpu}.  For example to allow proper use of multilibs.
+configure_tgt_pre_target_cpu_XCFLAGS="${XCFLAGS}"
+
 case "${target_cpu}" in
-  alpha*)              ARCH=alpha ;;
+  alpha*)
+       # fenv.c needs this option to generate inexact exceptions.
+       XCFLAGS="${XCFLAGS} -mfp-trap-mode=sui"
+       ARCH=alpha
+       ;;
   rs6000 | powerpc*)   ARCH=powerpc ;;
+  riscv*)              ARCH=riscv ;;
   sh*)                 ARCH=sh ;;
 
+  aarch64*)
+       ARCH=aarch64
+       case "${target}" in
+           aarch64*-*-linux*)
+               if test -n "$enable_aarch64_lse"; then
+                   try_ifunc=yes
+               fi
+               ;;
+       esac
+       ;;
   arm*)
        ARCH=arm
-       # ??? Detect when -march=armv7 is already enabled.
-       try_ifunc=yes
-       ;;
-
+       case "${target}" in
+            arm*-*-freebsd*)
+                ;;
+            *)
+                # ??? Detect when -march=armv7 is already enabled.
+                try_ifunc=yes
+                ;;
+        esac
+        ;;
   sparc)
        case " ${CC} ${CFLAGS} " in
          *" -m64 "*)
@@ -95,9 +119,9 @@ fi
 
 # Other system configury
 case "${target}" in
-  aarch64*)
-       # This is currently not supported in AArch64.
-       UNSUPPORTED=1
+  aarch64*-*-linux*)
+       # OS support for atomic primitives.
+       config_path="${config_path} linux/aarch64 posix"
        ;;
 
   arm*-*-linux*)
@@ -105,14 +129,36 @@ case "${target}" in
        config_path="${config_path} linux/arm posix"
        ;;
 
+  s390*-*-linux*)
+       # OS support for atomic primitives.
+       config_path="${config_path} s390 posix"
+       ;;
+
   *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu \
-  | *-*-netbsd* | *-*-freebsd* | *-*-openbsd* \
+  | *-*-netbsd* | *-*-freebsd* | *-*-openbsd* | *-*-dragonfly* \
   | *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11* \
-  | *-*-darwin* | *-*-aix*)
+  | *-*-darwin* | *-*-aix* | *-*-cygwin*)
        # POSIX system.  The OS is supported.
        config_path="${config_path} posix"
        ;;
 
+  *-*-mingw*)
+       # OS support for atomic primitives.
+        case ${target_thread_file} in
+          win32)
+            config_path="${config_path} mingw"
+            ;;
+          posix)
+            config_path="${config_path} posix"
+            ;;
+        esac
+       ;;
+
+  *-*-rtems*)
+       XCFLAGS="${configure_tgt_pre_target_cpu_XCFLAGS}"
+       config_path="rtems"
+       ;;
+
   *-*-elf*)
        # ??? No target OS.  We could be targeting bare-metal kernel-mode,
        # or user-mode for some custom OS.  If the target supports TAS,
@@ -127,3 +173,14 @@ case "${target}" in
        UNSUPPORTED=1
        ;;
 esac
+
+# glibc will pass hwcap to ifunc resolver functions as an argument.
+# The type may be different on different architectures.
+case "${target}" in
+  aarch64*-*-*)
+       IFUNC_RESOLVER_ARGS="uint64_t hwcap"
+       ;;
+  *)
+       IFUNC_RESOLVER_ARGS="void"
+       ;;
+esac