53
53
# platform dependent.
54
54
55
55
ifeq ($(call isTargetOs, linux), true)
56
- DUMP_SYMBOLS_CMD := $(NM) --defined-only *.o
56
+ DUMP_SYMBOLS_CMD := $(NM) --defined-only *$(OBJ_SUFFIX)
57
57
ifneq ($(FILTER_SYMBOLS_PATTERN), )
58
58
FILTER_SYMBOLS_PATTERN := $(FILTER_SYMBOLS_PATTERN)|
59
59
endif
@@ -67,7 +67,7 @@ ifeq ($(call isTargetOs, linux), true)
67
67
else ifeq ($(call isTargetOs, macosx), true)
68
68
# nm on macosx prints out "warning: nm: no name list" to stderr for
69
69
# 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
71
71
ifneq ($(FILTER_SYMBOLS_PATTERN), )
72
72
FILTER_SYMBOLS_PATTERN := $(FILTER_SYMBOLS_PATTERN)|
73
73
endif
@@ -89,7 +89,7 @@ else ifeq ($(call isTargetOs, aix), true)
89
89
# which may be installed under /opt/freeware/bin. So better use an absolute path here!
90
90
# NM=/usr/bin/nm
91
91
92
- DUMP_SYMBOLS_CMD := $(NM) -X64 -B -C *.o
92
+ DUMP_SYMBOLS_CMD := $(NM) -X64 -B -C *$(OBJ_SUFFIX)
93
93
FILTER_SYMBOLS_AWK_SCRIPT := \
94
94
'{ \
95
95
if (($$2="d" || $$2="D") && ($$3 ~ /^__vft/ || $$3 ~ /^gHotSpotVM/)) print $$3; \
@@ -98,7 +98,7 @@ else ifeq ($(call isTargetOs, aix), true)
98
98
}'
99
99
100
100
else ifeq ($(call isTargetOs, windows), true)
101
- DUMP_SYMBOLS_CMD := $(DUMPBIN) -symbols *.obj
101
+ DUMP_SYMBOLS_CMD := $(DUMPBIN) -symbols *$(OBJ_SUFFIX)
102
102
103
103
# The following lines create a list of vftable symbols to be filtered out of
104
104
# the mapfile. Removing this line causes the linker to complain about too many
0 commit comments