From 8512d7ac8f47e053ccc02f042cc0607f29d6c3fc Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Wed, 30 Mar 2022 15:10:30 -0600 Subject: [PATCH] Add x86_64 CPU to list requiring fpux80 support --- compiler/Makefile | 2 +- compiler/Makefile.fpc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/Makefile b/compiler/Makefile index 973380f6f4..0224a63dc7 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -5256,7 +5256,7 @@ endif ifndef EXCLUDE_80BIT_TARGETS FULL_TARGETS=$(filter-out $(PPC_TARGET),$(CYCLETARGETS)) else -FULL_TARGETS=$(filter-out i8086,$(filter-out i386,$(filter-out $(PPC_TARGET),$(CYCLETARGETS)))) +FULL_TARGETS=$(filter-out x86_64,$(filter-out i8086,$(filter-out i386,$(filter-out $(PPC_TARGET),$(CYCLETARGETS))))) endif full: fullcycle fullcycle: diff --git a/compiler/Makefile.fpc b/compiler/Makefile.fpc index a8ee6bafcc..99154fee05 100644 --- a/compiler/Makefile.fpc +++ b/compiler/Makefile.fpc @@ -1120,7 +1120,7 @@ endif ifndef EXCLUDE_80BIT_TARGETS FULL_TARGETS=$(filter-out $(PPC_TARGET),$(CYCLETARGETS)) else -FULL_TARGETS=$(filter-out i8086,$(filter-out i386,$(filter-out $(PPC_TARGET),$(CYCLETARGETS)))) +FULL_TARGETS=$(filter-out x86_64,$(filter-out i8086,$(filter-out i386,$(filter-out $(PPC_TARGET),$(CYCLETARGETS))))) endif full: fullcycle