From 02996134dab810141c7ab06270bb647d4e610da7 Mon Sep 17 00:00:00 2001 From: "Thomas A." Date: Thu, 31 Oct 2024 22:30:49 -0700 Subject: [PATCH] Remove "_LIBCPPABI_VERSION" Definition from CMakeLists.txt Doesn't seem like we need to define this macro through CMake. It only seems to cause unnecessary build warnings about the macro being redefined. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c15f77a7c..55144f764 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ include_directories( BEFORE ${CMAKE_CURRENT_SOURCE_DIR}/include ) -add_definitions(-D_LIBCPP_BUILDING_LIBRARY=1 -D_LIBCPPABI_VERSION=1 -DLIBCXX_BUILDING_LIBCXXABI=1) +add_definitions(-D_LIBCPP_BUILDING_LIBRARY=1 -DLIBCXX_BUILDING_LIBCXXABI=1) set(cxx_sources src/algorithm.cpp