From b3353651b05a58e50b0778c278daf942f9467f7b Mon Sep 17 00:00:00 2001 From: Luke Shingles Date: Mon, 11 Nov 2024 15:54:16 +0000 Subject: [PATCH] Disable stacktrace to check performance --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 45d73884b..2ba0faf1a 100644 --- a/Makefile +++ b/Makefile @@ -36,10 +36,10 @@ else ifneq '' '$(findstring g++,$(COMPILER_VERSION))' COMPILER_NAME := GCC CXXFLAGS += -flto=auto # std::stacktrace is available in GCC 14 and later - ifeq ($(shell expr $(COMPILER_VERSION_NUMBER_MAJOR) \>= 14),1) - CXXFLAGS += -rdynamic -DENABLE_STACKTRACE=true - LDFLAGS += -lstdc++exp - endif + # ifeq ($(shell expr $(COMPILER_VERSION_NUMBER_MAJOR) \>= 14),1) + # CXXFLAGS += -rdynamic -DENABLE_STACKTRACE=true + # LDFLAGS += -lstdc++exp + # endif else ifneq '' '$(findstring nvc++,$(COMPILER_VERSION))' COMPILER_NAME := NVHPC else