From 5d913ceeb78ff7982aa59ec6eab9e33c8db662bb Mon Sep 17 00:00:00 2001 From: Moritz Angermann Date: Fri, 26 Mar 2021 10:02:41 +0800 Subject: [armv7] PIC by default + [aarch64-linux] T11276 metric increase Metric Increase: T11276 --- compiler/GHC/Driver/Session.hs | 1 + includes/rts/Flags.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/GHC/Driver/Session.hs b/compiler/GHC/Driver/Session.hs index aea644aac8..ba957a9bd7 100644 --- a/compiler/GHC/Driver/Session.hs +++ b/compiler/GHC/Driver/Session.hs @@ -3691,6 +3691,7 @@ default_PIC platform = -- be built with -fPIC. (OSDarwin, ArchAArch64) -> [Opt_PIC] (OSLinux, ArchAArch64) -> [Opt_PIC, Opt_ExternalDynamicRefs] + (OSLinux, ArchARM {}) -> [Opt_PIC, Opt_ExternalDynamicRefs] (OSOpenBSD, ArchX86_64) -> [Opt_PIC] -- Due to PIE support in -- OpenBSD since 5.3 release -- (1 May 2013) we need to diff --git a/includes/rts/Flags.h b/includes/rts/Flags.h index ff05426e8a..23a5d78ea6 100644 --- a/includes/rts/Flags.h +++ b/includes/rts/Flags.h @@ -207,7 +207,7 @@ typedef struct _CONCURRENT_FLAGS { * Note that there is no 32bit darwin system we can realistically expect to * run on or compile for. */ -#if defined(darwin_HOST_OS) || defined(aarch64_HOST_ARCH) +#if defined(darwin_HOST_OS) || defined(aarch64_HOST_ARCH) || defined(arm_HOST_ARCH) #define DEFAULT_LINKER_ALWAYS_PIC true #else #define DEFAULT_LINKER_ALWAYS_PIC false -- cgit v1.2.1