Skip to content
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

remove ENABLE_GPERFTOOLS knob; it's not wired up to anything #185

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
5 changes: 2 additions & 3 deletions modules/EosVMBuildUtils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ endif()
# Setup profile builds
# ##################################################################################################
option(ENABLE_PROFILE "enable profile build" OFF)
option(ENABLE_GPERFTOOLS "enable gperftools" OFF)

if(ENABLE_PROFILE)
message(STATUS "Building with profiling information.")
Expand All @@ -39,10 +38,10 @@ endif()
# Setup santized builds
# ##################################################################################################
cmake_dependent_option(ENABLE_ADDRESS_SANITIZER "build with address sanitization" OFF
"NOT ENABLE_PROFILE;NOT ENABLE_GPERFTOOLS" OFF)
"NOT ENABLE_PROFILE" OFF)
cmake_dependent_option(ENABLE_UNDEFINED_BEHAVIOR_SANITIZER
"build with undefined behavior sanitization" OFF
"NOT ENABLE_PROFILE;NOT ENABLE_GPERFTOOLS" OFF)
"NOT ENABLE_PROFILE" OFF)

if(ENABLE_ADDRESS_SANITIZER)
message(STATUS "Building with address sanitization.")
Expand Down