From 409eef76c9220386eeaaa0574d133c11401c5024 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 20 Feb 2019 11:43:42 -0500 Subject: [PATCH] Add ppc64le support --- projects/unix/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/projects/unix/Makefile b/projects/unix/Makefile index 18d6fba..f037bc6 100755 --- a/projects/unix/Makefile +++ b/projects/unix/Makefile @@ -108,6 +108,15 @@ ifneq ("$(filter ppc64 powerpc64,$(HOST_CPU))","") NO_ASM := 1 $(warning Architecture "$(HOST_CPU)" not officially supported.') endif +ifneq ("$(filter ppc64le powerpc64le,$(HOST_CPU))","") + CPU := PPC + ARCH_DETECTED := 64BITS + BIG_ENDIAN := 0 + PIC ?= 1 + NO_ASM := 1 + NO_SSE := 1 + $(warning Architecture "$(HOST_CPU)" not officially supported.') +endif ifneq ("$(filter arm%,$(HOST_CPU))","") ifeq ("$(filter arm%b,$(HOST_CPU))","") CPU := ARM