Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions make/hotspot/lib/JvmOverrideFiles.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ ifeq ($(call isTargetOs, linux), true)
endif

else ifeq ($(call isTargetOs, macosx), true)
JVM_EXCLUDE_FILES += decoder_bsd.cpp
JVM_EXCLUDE_FILES += \
decoder_bsd.cpp \
os_perf_bsd.cpp
# The copied fdlibm routines in these files must not be optimized
BUILD_LIBJVM_sharedRuntimeTrig.cpp_CXXFLAGS := $(FDLIBM_CFLAGS) $(LIBJVM_FDLIBM_COPY_OPT_FLAG)
BUILD_LIBJVM_sharedRuntimeTrans.cpp_CXXFLAGS := $(FDLIBM_CFLAGS) $(LIBJVM_FDLIBM_COPY_OPT_FLAG)
Expand Down Expand Up @@ -142,7 +144,10 @@ else ifeq ($(call isTargetOs, windows), true)
#

else ifeq ($(call isTargetOs, bsd), true)
JVM_EXCLUDE_FILES += decoder_mach0.cpp
JVM_EXCLUDE_FILES += \
decoder_mach0.cpp \
os_perf_macos.cpp

BUILD_LIBJVM_sharedRuntimeTrig.cpp_CXXFLAGS := -DNO_PCH $(FDLIBM_CFLAGS) $(LIBJVM_FDLIBM_COPY_OPT_FLAG)
BUILD_LIBJVM_sharedRuntimeTrans.cpp_CXXFLAGS := -DNO_PCH $(FDLIBM_CFLAGS) $(LIBJVM_FDLIBM_COPY_OPT_FLAG)

Expand Down
Loading
Loading