make/linux/makefiles/minimal1.make

Fri, 28 Aug 2020 07:38:21 +0100

author
andrew
date
Fri, 28 Aug 2020 07:38:21 +0100
changeset 9995
633a3d28d2fe
parent 6198
55fb97c4c58d
child 6876
710a3c8b516e
permissions
-rw-r--r--

8251120: [8u] HotSpot build assumes ENABLE_JFR is set to either true or false
Summary: Only test for ENABLE_JFR being true, and assume undefined == false
Reviewed-by: neugens

jprovino@4165 1 #
mikael@6198 2 # Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
jprovino@4165 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jprovino@4165 4 #
jprovino@4165 5 # This code is free software; you can redistribute it and/or modify it
jprovino@4165 6 # under the terms of the GNU General Public License version 2 only, as
jprovino@4165 7 # published by the Free Software Foundation.
jprovino@4165 8 #
jprovino@4165 9 # This code is distributed in the hope that it will be useful, but WITHOUT
jprovino@4165 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jprovino@4165 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jprovino@4165 12 # version 2 for more details (a copy is included in the LICENSE file that
jprovino@4165 13 # accompanied this code).
jprovino@4165 14 #
jprovino@4165 15 # You should have received a copy of the GNU General Public License version
jprovino@4165 16 # 2 along with this work; if not, write to the Free Software Foundation,
jprovino@4165 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jprovino@4165 18 #
jprovino@4165 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jprovino@4165 20 # or visit www.oracle.com if you need additional information or have any
jprovino@4165 21 # questions.
sla@5237 22 #
jprovino@4165 23 #
jprovino@4165 24
jprovino@4165 25 TYPE=MINIMAL1
jprovino@4165 26
dholmes@5455 27 # Force all variables to false, overriding any other
dholmes@5455 28 # setting that may have occurred in the makefiles. These
dholmes@5455 29 # can still be overridden by passing the variable as an
dholmes@5455 30 # argument to 'make'
dholmes@5455 31 INCLUDE_JVMTI := false
dholmes@5455 32 INCLUDE_FPROF := false
dholmes@5455 33 INCLUDE_VM_STRUCTS := false
dholmes@5455 34 INCLUDE_JNI_CHECK := false
dholmes@5455 35 INCLUDE_SERVICES := false
dholmes@5455 36 INCLUDE_MANAGEMENT := false
dholmes@5455 37 INCLUDE_ALL_GCS := false
dholmes@5455 38 INCLUDE_NMT := false
dholmes@5455 39 INCLUDE_TRACE := false
dholmes@5455 40 INCLUDE_CDS := false
jprovino@4165 41
jprovino@4165 42 CXXFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\"
jprovino@4165 43 CFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\"
jprovino@4165 44
jprovino@4165 45 Src_Dirs/MINIMAL1 = $(CORE_PATHS) $(COMPILER1_PATHS)
jprovino@4165 46
jprovino@4165 47 Src_Files_EXCLUDE/MINIMAL1 += $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
jprovino@4165 48
jprovino@4165 49 -include $(HS_ALT_MAKE)/$(OSNAME)/makefiles/minimal1.make
jprovino@4165 50
jprovino@4165 51 .PHONY: $(HS_ALT_MAKE)/$(OSNAME)/makefiles/minimal1.make

mercurial