From 792eaab09c143f3715507c7094c168488736fab3 Mon Sep 17 00:00:00 2001 From: Cas Cremers Date: Sun, 14 Oct 2018 17:04:42 +0200 Subject: [PATCH] Enable warning to help locate the problem areas to fix. --- src/BuildUnix.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BuildUnix.cmake b/src/BuildUnix.cmake index 66404f3..a3480fe 100644 --- a/src/BuildUnix.cmake +++ b/src/BuildUnix.cmake @@ -9,7 +9,7 @@ message (STATUS "Building Linux version") # Static where possible (i.e. only not on the APPLE) -set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -static -m32") +set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -static -m32 -Wtrampolines") set (scythername "scyther-linux") add_executable (${scythername} ${Scyther_sources})