8268327: Upstream: 8268169: The system lookup can not find stdio functions such as printf on Windows 10

Reviewed-by: erikj, sundar
This commit is contained in:
Jorn Vernee 2021-06-08 14:20:31 +00:00
parent 6843576c95
commit 8158b82269
5 changed files with 217 additions and 72 deletions

View file

@ -45,6 +45,15 @@ else ifeq ($(call isTargetOs, windows), false)
LIBS := $(LIBCXX), \
))
else # windows
$(eval $(call SetupJdkLibrary, BUILD_SYSLOOKUPLIB, \
NAME := WinFallbackLookup, \
CFLAGS := $(CFLAGS_JDKLIB), \
CXXFLAGS := $(CXXFLAGS_JDKLIB), \
LDFLAGS := $(LDFLAGS_JDKLIB), \
LIBS := $(LIBCXX), \
))
endif