mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-23 12:54:17 +02:00
8291454: Missing check for JLI C runtime library in CoreLibraries.gmk
Reviewed-by: erikj, ihse
This commit is contained in:
parent
5a539e8da7
commit
8a804f653d
1 changed files with 4 additions and 2 deletions
|
@ -172,8 +172,10 @@ ifeq ($(call isTargetOs, macosx), true)
|
|||
endif
|
||||
|
||||
ifeq ($(call isTargetOs, windows), true)
|
||||
# Supply the name of the C runtime lib.
|
||||
LIBJLI_CFLAGS += -DMSVCR_DLL_NAME='"$(notdir $(MSVCR_DLL))"'
|
||||
# Supply the name of the C runtime libs.
|
||||
ifneq ($(MSVCR_DLL), )
|
||||
LIBJLI_CFLAGS += -DMSVCR_DLL_NAME='"$(notdir $(MSVCR_DLL))"'
|
||||
endif
|
||||
ifneq ($(VCRUNTIME_1_DLL), )
|
||||
LIBJLI_CFLAGS += -DVCRUNTIME_1_DLL_NAME='"$(notdir $(VCRUNTIME_1_DLL))"'
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue