# HG changeset patch
# User nemo
# Date 1351186208 14400
# Node ID dfc4b6cbe6ea2c01de4dfe930734c1804f37c918
# Parent  7b8b1a634a5b74b02f04483e75c79379702f67c0
-gv was causing broken behaviour

diff -r 7b8b1a634a5b -r dfc4b6cbe6ea CMakeLists.txt
--- a/CMakeLists.txt	Thu Oct 25 11:57:06 2012 -0400
+++ b/CMakeLists.txt	Thu Oct 25 13:30:08 2012 -0400
@@ -182,7 +182,9 @@
 #get BUILD_TYPE and enable/disable optimisation
 if(CMAKE_BUILD_TYPE MATCHES "DEBUG")
     message(STATUS "Building Debug flavour")
-    set(pascal_flags "-O-" "-g" "-gl" "-gv" ${pascal_flags})
+    # for no obvious reason, -gv was causing broken behaviour
+    #set(pascal_flags "-O-" "-g" "-gl" "-gv" ${pascal_flags})
+    set(pascal_flags "-O-" "-g" "-gl" ${pascal_flags})
     set(haskell_flags "-Wall" "-debug" "-dcore-lint" "-fno-warn-unused-do-bind" ${haskell_flags})
 else()
     message(STATUS "Building Release flavour")