From 57ee0dd00afa7c2fc0eda107222e45ef257b1f0a Mon Sep 17 00:00:00 2001 From: pierre Date: Sun, 24 Feb 2019 22:20:35 +0000 Subject: [PATCH] Fix fullcycle/fullinstall by adding missing armgen directory -Fu option if PPC_TARGET is armeb git-svn-id: trunk@41455 - --- compiler/Makefile | 3 +++ compiler/Makefile.fpc | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/compiler/Makefile b/compiler/Makefile index b549074961..1aa1987ced 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -545,6 +545,9 @@ endif ifeq ($(PPC_TARGET),arm) override LOCALOPT+=-Fuarmgen endif +ifeq ($(PPC_TARGET),armeb) +override LOCALOPT+=-Fuarmgen +endif ifeq ($(PPC_TARGET),mipsel) override LOCALOPT+=-Fumips endif diff --git a/compiler/Makefile.fpc b/compiler/Makefile.fpc index 7a25584014..6989658224 100644 --- a/compiler/Makefile.fpc +++ b/compiler/Makefile.fpc @@ -312,6 +312,11 @@ ifeq ($(PPC_TARGET),arm) override LOCALOPT+=-Fuarmgen endif +# ARMEB specific +ifeq ($(PPC_TARGET),armeb) +override LOCALOPT+=-Fuarmgen +endif + # mipsel specific ifeq ($(PPC_TARGET),mipsel) override LOCALOPT+=-Fumips