< prev index next >

jdk/make/lib/LibCommon.gmk

Print this page

        

*** 43,61 **** # Absolute paths to lib files on windows for use in LDFLAGS. Should figure out a more # elegant solution to this. WIN_JAVA_LIB := $(JDK_OUTPUTDIR)/objs/libjava/java.lib - # Use this variable to set DEBUG_SYMBOLS true on windows for all libraries, but - # not on other platforms. - ifeq ($(OPENJDK_TARGET_OS), windows) - DEBUG_ALL_BINARIES := true - endif - - # Build everything with debugging on OpenJDK ifdef OPENJDK DEBUG_ALL_BINARIES := true endif ################################################################################ # Find the default set of src dirs for a native library. --- 43,63 ---- # Absolute paths to lib files on windows for use in LDFLAGS. Should figure out a more # elegant solution to this. WIN_JAVA_LIB := $(JDK_OUTPUTDIR)/objs/libjava/java.lib ifdef OPENJDK + # Build everything with debugging on OpenJDK + DEBUG_ALL_BINARIES := true + else + # Use this variable to set DEBUG_SYMBOLS true on windows for all libraries, but + # not on other platforms. + ifeq ($(OPENJDK_TARGET_OS), windows) DEBUG_ALL_BINARIES := true + else + DEBUG_ALL_BINARIES := false + endif endif ################################################################################ # Find the default set of src dirs for a native library.
< prev index next >