summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2025-11-01 10:05:11 +0100
committerGitHub <noreply@github.com>2025-11-01 10:05:11 +0100
commit828e72d604217d19e4b6875b7cac5d2e049ecedd (patch)
tree094f23bc0186dc95bcdbf749fc46cb48c0f1b152 /CMakeLists.txt
parent998a3577cea04abaa1a41963bf58785bbcb39618 (diff)
parent713dfb41dfa240a847cd9d07996bd25a38259d0c (diff)
Merge pull request #14034 from JoshuaVandaele/byeprofile
JitRegister: Remove OProfile profiler
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2f4572f5f1..77eb170452 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -119,7 +119,6 @@ option(ENCODE_FRAMEDUMPS "Encode framedumps in AVI format" ON)
option(ENABLE_GPROF "Enable gprof profiling (must be using Debug build)" OFF)
option(FASTLOG "Enable all logs" OFF)
-option(OPROFILING "Enable profiling" OFF)
# TODO: Add DSPSpy
option(DSPTOOL "Build dsptool" OFF)
@@ -565,16 +564,6 @@ if(ENCODE_FRAMEDUMPS)
endif()
endif()
-if(OPROFILING)
- find_package(OProfile)
- if(OPROFILE_FOUND)
- message(STATUS "OProfile found, enabling profiling support")
- add_definitions(-DUSE_OPROFILE=1)
- else()
- message(FATAL_ERROR "OProfile not found. Can't build profiling support.")
- endif()
-endif()
-
if(ENABLE_HWDB)
find_package(LIBUDEV REQUIRED)
if(LIBUDEV_FOUND)