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