make/linux/Makefile

changeset 6876
710a3c8b516e
parent 6538
56e7f5560e60
parent 392
4bfb40d1e17a
child 7994
04ff2f6cd0eb
equal deleted inserted replaced
6875:28b50d07f6f8 6876:710a3c8b516e
66 FORCE_TIERED=1 66 FORCE_TIERED=1
67 endif 67 endif
68 endif 68 endif
69 # C1 is not ported on ppc64, so we cannot build a tiered VM: 69 # C1 is not ported on ppc64, so we cannot build a tiered VM:
70 ifeq ($(ARCH),ppc64) 70 ifeq ($(ARCH),ppc64)
71 FORCE_TIERED=0
72 endif
73 # C1 is not ported on mips64, so we cannot build a tiered VM:
74 ifeq ($(ARCH),mips64)
71 FORCE_TIERED=0 75 FORCE_TIERED=0
72 endif 76 endif
73 77
74 ifdef LP64 78 ifdef LP64
75 ifeq ("$(filter $(LP64_ARCH),$(BUILDARCH))","") 79 ifeq ("$(filter $(LP64_ARCH),$(BUILDARCH))","")
227 231
228 # We do not want people accidentally building on old systems (e.g. Linux 2.2.x, 232 # We do not want people accidentally building on old systems (e.g. Linux 2.2.x,
229 # Solaris 2.5.1, 2.6). 233 # Solaris 2.5.1, 2.6).
230 # Disable this check by setting DISABLE_HOTSPOT_OS_VERSION_CHECK=ok. 234 # Disable this check by setting DISABLE_HOTSPOT_OS_VERSION_CHECK=ok.
231 235
232 SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3% 236 SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3% 4%
233 OS_VERSION := $(shell uname -r) 237 OS_VERSION := $(shell uname -r)
234 EMPTY_IF_NOT_SUPPORTED = $(filter $(SUPPORTED_OS_VERSION),$(OS_VERSION)) 238 EMPTY_IF_NOT_SUPPORTED = $(filter $(SUPPORTED_OS_VERSION),$(OS_VERSION))
235 239
236 check_os_version: 240 check_os_version:
237 ifeq ($(DISABLE_HOTSPOT_OS_VERSION_CHECK)$(EMPTY_IF_NOT_SUPPORTED),) 241 ifeq ($(DISABLE_HOTSPOT_OS_VERSION_CHECK)$(EMPTY_IF_NOT_SUPPORTED),)

mercurial