From d896f7f871481712e00a99de0d5621221c3e9531 Mon Sep 17 00:00:00 2001 From: Anders Ruud Date: Fri, 19 Aug 2016 08:46:05 +0000 Subject: [PATCH] Work-around for gcc bug 1568899. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ea4cc8c7..a547e2c98 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -199,6 +199,9 @@ Please see http://bitbucket.org/rude/megasource ${VORBISFILE_LIBRARY} ${LOVE_LUA_LIBRARY} ) + + # Work-around for gcc bug 1568899. + set(LOVE_LINK_LIBRARIES ${LOVE_LINK_LIBRARIES} gcc_s gcc) if(LOVE_MPG123) find_package(MPG123 REQUIRED)