make/linux/makefiles/defs.make

changeset 6538
56e7f5560e60
parent 6452
faf0c78e906b
child 6876
710a3c8b516e
child 7598
ddce0b7cee93
equal deleted inserted replaced
6537:0118c8c7b80f 6538: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)

mercurial