< prev index next >

make/lib/Lib-jdk.management.gmk

Print this page

        

*** 28,46 **** # Hook to include the corresponding custom file, if present. $(eval $(call IncludeCustomExtension, lib/Lib-jdk.management.gmk)) ################################################################################ ! ifeq ($(OPENJDK_TARGET_OS), windows) # In (at least) VS2013 and later, -DPSAPI_VERSION=1 is needed to generate # a binary that is compatible with windows versions older than 7/2008R2. # See MSDN documentation for GetProcessMemoryInfo for more information. LIBMANAGEMENT_EXT_CFLAGS += -DPSAPI_VERSION=1 endif LIBMANAGEMENT_EXT_OPTIMIZATION := HIGH ! ifneq ($(findstring $(OPENJDK_TARGET_OS), solaris linux), ) ifeq ($(COMPILE_WITH_DEBUG_SYMBOLS), true) LIBMANAGEMENT_EXT_OPTIMIZATION := LOW endif endif --- 28,46 ---- # Hook to include the corresponding custom file, if present. $(eval $(call IncludeCustomExtension, lib/Lib-jdk.management.gmk)) ################################################################################ ! ifeq ($(call isTargetOs, windows), true) # In (at least) VS2013 and later, -DPSAPI_VERSION=1 is needed to generate # a binary that is compatible with windows versions older than 7/2008R2. # See MSDN documentation for GetProcessMemoryInfo for more information. LIBMANAGEMENT_EXT_CFLAGS += -DPSAPI_VERSION=1 endif LIBMANAGEMENT_EXT_OPTIMIZATION := HIGH ! ifeq ($(call isTargetOs, solaris linux), true) ifeq ($(COMPILE_WITH_DEBUG_SYMBOLS), true) LIBMANAGEMENT_EXT_OPTIMIZATION := LOW endif endif
*** 63,68 **** ################################################################################ # Include custom extension post hook $(eval $(call IncludeCustomExtension, lib/Lib-jdk.management-post.gmk)) - --- 63,67 ----
< prev index next >