< prev index next >

make/lib/CoreLibraries.gmk

Print this page

        

@@ -281,10 +281,15 @@
 ifeq ($(OPENJDK_TARGET_OS), windows)
   BUILD_LIBJLI_FILES += java_md.c \
       cmdtoargs.c
   # Staticically link with c runtime on windows.
   LIBJLI_CFLAGS := $(filter-out -MD, $(LIBJLI_CFLAGS))
+  # Supply the name of the C runtime lib.
+  LIBJLI_CFLAGS += -DMSVCR_DLL_NAME='"$(notdir $(MSVCR_DLL))"'
+  ifneq ($(MSVCP_DLL), )
+    LIBJLI_CFLAGS += -DMSVCP_DLL_NAME='"$(notdir $(MSVCP_DLL))"'
+  endif
 else ifneq ($(OPENJDK_TARGET_OS), macosx)
 
   BUILD_LIBJLI_FILES += java_md_common.c
   BUILD_LIBJLI_FILES += java_md_solinux.c ergo.c
 
< prev index next >