From 8acd2cd5ced9e82dafa77985119cdd8e73738025 Mon Sep 17 00:00:00 2001 From: "Keith W. Campbell" Date: Mon, 10 Jun 2024 17:09:24 -0400 Subject: [PATCH] UMA: add missing include path If make decides to build OMR_VM.o for omr_static_lib, it will not be able to find mminitcore.h because $(top_srcdir)/gc/startup is not on the include path (like it is in omr/makefile). Signed-off-by: Keith W. Campbell --- omr_static_lib/makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/omr_static_lib/makefile b/omr_static_lib/makefile index 50d5b576a49..0800a822358 100644 --- a/omr_static_lib/makefile +++ b/omr_static_lib/makefile @@ -76,4 +76,6 @@ $(foreach lib,$(OMRLIBS), \ $(shell MAKEFLAGS= $(MAKE) -s --no-print-directory -C $(lib) show-objects), \ $(if $(filter /%,$(object)),$(object),$(lib)/$(object)))) +MODULE_INCLUDES += $(top_srcdir)/gc/startup + include $(top_srcdir)/omrmakefiles/rules.mk