Skip to content

Commit cb5771d

Browse files
TheShermanTankermagicus
authored andcommittedSep 20, 2022
8294006: Avoid hardcoding object file suffixes in make
Reviewed-by: erikj, ihse
1 parent 5002eaa commit cb5771d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎make/common/NativeCompilation.gmk

+4-4
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ define SetupNativeCompilationBody
807807
ifeq ($(TOOLCHAIN_TYPE), microsoft)
808808
$1_PCH_FILE := $$($1_OBJECT_DIR)/$1.pch
809809
$1_GENERATED_PCH_SRC := $$($1_OBJECT_DIR)/$1_pch.cpp
810-
$1_GENERATED_PCH_OBJ := $$($1_OBJECT_DIR)/$1_pch.obj
810+
$1_GENERATED_PCH_OBJ := $$($1_OBJECT_DIR)/$1_pch$(OBJ_SUFFIX)
811811

812812
$$(eval $$(call SetupCompileNativeFile, $1_$$(notdir $$($1_GENERATED_PCH_SRC)), \
813813
FILE := $$($1_GENERATED_PCH_SRC), \
@@ -914,15 +914,15 @@ define SetupNativeCompilationBody
914914
# For some unknown reason, in this case CL actually outputs the show
915915
# includes to stderr so need to redirect it to hide the output from the
916916
# main log.
917-
$$(call ExecuteWithLog, $$($1_RES_DEPS_FILE).obj, \
917+
$$(call ExecuteWithLog, $$($1_RES_DEPS_FILE)$(OBJ_SUFFIX), \
918918
$$($1_CC) $$(filter-out -l%, $$($1_RCFLAGS)) \
919919
$$($1_SYSROOT_CFLAGS) -showIncludes -nologo -TC \
920-
$(CC_OUT_OPTION)$$($1_RES_DEPS_FILE).obj -P -Fi$$($1_RES_DEPS_FILE).pp \
920+
$(CC_OUT_OPTION)$$($1_RES_DEPS_FILE)$(OBJ_SUFFIX) -P -Fi$$($1_RES_DEPS_FILE).pp \
921921
$$($1_VERSIONINFO_RESOURCE)) 2>&1 \
922922
| $(TR) -d '\r' | $(GREP) -v -e "^Note: including file:" \
923923
-e "^$$(notdir $$($1_VERSIONINFO_RESOURCE))$$$$" || test "$$$$?" = "1" ; \
924924
$(ECHO) $$($1_RES): \\ > $$($1_RES_DEPS_FILE) ; \
925-
$(SED) $(WINDOWS_SHOWINCLUDE_SED_PATTERN) $$($1_RES_DEPS_FILE).obj.log \
925+
$(SED) $(WINDOWS_SHOWINCLUDE_SED_PATTERN) $$($1_RES_DEPS_FILE)$(OBJ_SUFFIX).log \
926926
>> $$($1_RES_DEPS_FILE) ; \
927927
$(ECHO) >> $$($1_RES_DEPS_FILE) ;\
928928
$(SED) $(DEPENDENCY_TARGET_SED_PATTERN) $$($1_RES_DEPS_FILE) \

‎make/hotspot/lib/JvmMapfile.gmk

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ endif
5353
# platform dependent.
5454

5555
ifeq ($(call isTargetOs, linux), true)
56-
DUMP_SYMBOLS_CMD := $(NM) --defined-only *.o
56+
DUMP_SYMBOLS_CMD := $(NM) --defined-only *$(OBJ_SUFFIX)
5757
ifneq ($(FILTER_SYMBOLS_PATTERN), )
5858
FILTER_SYMBOLS_PATTERN := $(FILTER_SYMBOLS_PATTERN)|
5959
endif
@@ -67,7 +67,7 @@ ifeq ($(call isTargetOs, linux), true)
6767
else ifeq ($(call isTargetOs, macosx), true)
6868
# nm on macosx prints out "warning: nm: no name list" to stderr for
6969
# files without symbols. Hide this, even at the expense of hiding real errors.
70-
DUMP_SYMBOLS_CMD := $(NM) -Uj *.o 2> /dev/null
70+
DUMP_SYMBOLS_CMD := $(NM) -Uj *$(OBJ_SUFFIX) 2> /dev/null
7171
ifneq ($(FILTER_SYMBOLS_PATTERN), )
7272
FILTER_SYMBOLS_PATTERN := $(FILTER_SYMBOLS_PATTERN)|
7373
endif
@@ -89,7 +89,7 @@ else ifeq ($(call isTargetOs, aix), true)
8989
# which may be installed under /opt/freeware/bin. So better use an absolute path here!
9090
# NM=/usr/bin/nm
9191

92-
DUMP_SYMBOLS_CMD := $(NM) -X64 -B -C *.o
92+
DUMP_SYMBOLS_CMD := $(NM) -X64 -B -C *$(OBJ_SUFFIX)
9393
FILTER_SYMBOLS_AWK_SCRIPT := \
9494
'{ \
9595
if (($$2="d" || $$2="D") && ($$3 ~ /^__vft/ || $$3 ~ /^gHotSpotVM/)) print $$3; \
@@ -98,7 +98,7 @@ else ifeq ($(call isTargetOs, aix), true)
9898
}'
9999

100100
else ifeq ($(call isTargetOs, windows), true)
101-
DUMP_SYMBOLS_CMD := $(DUMPBIN) -symbols *.obj
101+
DUMP_SYMBOLS_CMD := $(DUMPBIN) -symbols *$(OBJ_SUFFIX)
102102

103103
# The following lines create a list of vftable symbols to be filtered out of
104104
# the mapfile. Removing this line causes the linker to complain about too many

‎make/modules/java.base/Launcher.gmk

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ ifeq ($(call isTargetOs, macosx aix linux), true)
7979
SRC := $(TOPDIR)/src/$(MODULE)/unix/native/jspawnhelper, \
8080
OPTIMIZATION := LOW, \
8181
CFLAGS := $(CFLAGS_JDKEXE) -I$(TOPDIR)/src/$(MODULE)/unix/native/libjava, \
82-
EXTRA_OBJECT_FILES := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libjava/childproc.o, \
82+
EXTRA_OBJECT_FILES := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libjava/childproc$(OBJ_SUFFIX), \
8383
LDFLAGS := $(LDFLAGS_JDKEXE), \
8484
OUTPUT_DIR := $(SUPPORT_OUTPUTDIR)/modules_libs/$(MODULE), \
8585
))

0 commit comments

Comments
 (0)