From 4d33bce44be553641d2b22ee930bca2f8a2c7721 Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Fri, 29 May 2020 15:08:15 -0400 Subject: [PATCH] remove ENABLE_GPERFTOOLS; it's not wired up --- modules/EosVMBuildUtils.cmake | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/EosVMBuildUtils.cmake b/modules/EosVMBuildUtils.cmake index bf5ca959..37f83e49 100644 --- a/modules/EosVMBuildUtils.cmake +++ b/modules/EosVMBuildUtils.cmake @@ -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.") @@ -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.")