comparison make/linux/makefiles/defs.make @ 17830:56e7f5560e60

8036767: PPC64: Support for little endian execution model Reviewed-by: goetz, kvn, dholmes, simonis Contributed-by: asmundak@google.com
author kvn
date Wed, 02 Apr 2014 11:24:44 -0700
parents faf0c78e906b
children 52b4284cb496
comparison
equal deleted inserted replaced
17829:0118c8c7b80f 17830:56e7f5560e60
31 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name 31 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
32 32
33 # ARCH can be set explicitly in spec.gmk 33 # ARCH can be set explicitly in spec.gmk
34 ifndef ARCH 34 ifndef ARCH
35 ARCH := $(shell uname -m) 35 ARCH := $(shell uname -m)
36 # Fold little endian PowerPC64 into big-endian (if ARCH is set in
37 # hotspot-spec.gmk, this will be done by the configure script).
38 ifeq ($(ARCH),ppc64le)
39 ARCH := ppc64
40 endif
36 endif 41 endif
37 42
38 PATH_SEP ?= : 43 PATH_SEP ?= :
39 44
40 ifeq ($(LP64), 1) 45 ifeq ($(LP64), 1)