mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
Since XCode 10, Apple does not recommend building for macOS <10.9 Reason - 10.7 and 10.8 require libstdc++ We enforce libc++ ```# Shouldn't cmake do this??? string( APPEND CMAKE_CXX_FLAGS " -stdlib=libc++" )``` While this generally works, it makes the proper dependency management tricky. Compiler message for the library support: ``` clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated] ld: library not found for -lstdc++ ```