diff options
author | Matthias Klose <doko@ubuntu.com> | 2020-11-18 13:24:33 +0100 |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2020-11-18 13:24:33 +0100 |
commit | ba97b532604815333848ee30e069dde6e36ce4c9 (patch) | |
tree | c4ed8f859f13f48978251351fe9aec340e878f07 | |
parent | bf7b94d40739428fda3d798b4add833054f7d012 (diff) | |
download | gcc-ba97b532604815333848ee30e069dde6e36ce4c9.zip gcc-ba97b532604815333848ee30e069dde6e36ce4c9.tar.gz gcc-ba97b532604815333848ee30e069dde6e36ce4c9.tar.bz2 |
Fix PR ada/97859, building ada cross compiler targeting powerpc64le-linux-gnu
2020-11-18 Matthias Klose <doko@ubuntu.com>
PR ada/97859
* Makefile.rtl (powerpc% linux%): Also match powerpc64le cpu.
-rw-r--r-- | gcc/ada/Makefile.rtl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/Makefile.rtl b/gcc/ada/Makefile.rtl index 6d9efc4..4774e91 100644 --- a/gcc/ada/Makefile.rtl +++ b/gcc/ada/Makefile.rtl @@ -2305,7 +2305,7 @@ ifeq ($(strip $(filter-out powerpc% linux%,$(target_cpu) $(target_os))),) $(ATOMICS_BUILTINS_TARGET_PAIRS) \ system.ads<libgnat/system-linux-ppc.ads - ifeq ($(strip $(filter-out powerpc64,$(target_cpu))),) + ifeq ($(strip $(filter-out powerpc64%,$(target_cpu))),) ifneq ($(strip $(MULTISUBDIR)),/32) LIBGNAT_TARGET_PAIRS += $(GNATRTL_128BIT_PAIRS) EXTRA_GNATRTL_NONTASKING_OBJS += $(GNATRTL_128BIT_OBJS) |