From 6e0f359406d9e319395e4c2d2913acdaf63bd02d Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Wed, 30 Mar 2022 10:33:58 +0200 Subject: [PATCH] Fix boost build on arm mac --- deps/Boost/Boost.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deps/Boost/Boost.cmake b/deps/Boost/Boost.cmake index d4eb1cddf5..92a1d6ea5f 100644 --- a/deps/Boost/Boost.cmake +++ b/deps/Boost/Boost.cmake @@ -35,6 +35,8 @@ elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") if (WIN32) set(_boost_toolset "clang-win") + elseif (APPLE) + set(_boost_toolset "clang") else() set(_boost_toolset clang) configure_file(${CMAKE_CURRENT_LIST_DIR}/user-config.jam boost-user-config.jam)