From f22092918bd17b3e138079c7be70d34d9d15c0a0 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Fri, 4 Nov 2016 23:46:08 +0100 Subject: [PATCH] Workaround for a gcc 6.2.1 bug causing boost-related build issues. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Patch provided by Aurélien Jacobs, thanks a lot! This fixes bug #863. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d84f0427..e101f96a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -396,6 +396,7 @@ add_definitions(${QT_DEFINITIONS} -DQT_NO_KEYWORDS) add_definitions(-D__STDC_LIMIT_MACROS) add_definitions(-Wall -Wextra) add_definitions(-std=c++11) +add_definitions(-fext-numeric-literals) if(ENABLE_DECODE) add_definitions(-DENABLE_DECODE) -- 2.30.2