diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-12 22:35:21 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-12 22:35:21 +0000 |
commit | 37d5b8d9c2fa9af258e6dc429544b95342b7dbf4 (patch) | |
tree | ea1ee251c0739f4526aa67f79506656cb054e673 | |
parent | Merge pull request #4814 (diff) | |
download | monero-37d5b8d9c2fa9af258e6dc429544b95342b7dbf4.tar.xz |
CMakeLists.txt: add -ftemplate-depth=900
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 388eee3fb..69177c85f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -816,6 +816,9 @@ else() set(DEBUG_FLAGS "${DEBUG_FLAGS} -O0 ") endif() + # At least some CLANGs default to not enough for monero + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftemplate-depth=900") + if(NOT DEFINED USE_LTO_DEFAULT) set(USE_LTO_DEFAULT false) endif() |