Skip to content

[build] Enable Intel JIT events only on x86_64 #56964

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 6, 2025
Merged
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
8 changes: 6 additions & 2 deletions Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -486,11 +486,15 @@ endif
# Set to 1 to enable profiling with perf
ifeq ("$(OS)", "Linux")
USE_PERF_JITEVENTS ?= 1
ifeq ($(ARCH),x86_64)
USE_INTEL_JITEVENTS ?= 1
else
else # ARCH x86_64
USE_INTEL_JITEVENTS ?= 0
endif # ARCH x86_64
else # OS Linux
USE_PERF_JITEVENTS ?= 0
USE_INTEL_JITEVENTS ?= 0
endif
endif # OS Linux

JULIACODEGEN := LLVM

Expand Down
Loading