Revision: 69102
          http://sourceforge.net/p/brlcad/code/69102
Author:   starseeker
Date:     2016-10-17 18:55:27 +0000 (Mon, 17 Oct 2016)
Log Message:
-----------
Apparently older CMake versions added a stack size bump to MSVC, and that turns 
out to be handy for some of our users.  Newer CMake no longer does this 
automatically - add it in our own logic for newer CMake.

Modified Paths:
--------------
    brlcad/trunk/CMakeLists.txt

Modified: brlcad/trunk/CMakeLists.txt
===================================================================
--- brlcad/trunk/CMakeLists.txt 2016-10-17 16:02:48 UTC (rev 69101)
+++ brlcad/trunk/CMakeLists.txt 2016-10-17 18:55:27 UTC (rev 69102)
@@ -2494,7 +2494,7 @@
 
 # Before we finalize, set some specific global linker flags
 if(MSVC)
-  set(CMAKE_EXE_LINKER_FLAGS_INIT ${CMAKE_EXE_LINKER_FLAGS_INIT} /NOLOGO)
+  set(CMAKE_EXE_LINKER_FLAGS_INIT ${CMAKE_EXE_LINKER_FLAGS_INIT} 
/STACK:10000000 /NOLOGO)
   set(CMAKE_SHARED_LINKER_FLAGS_INIT ${CMAKE_EXE_LINKER_FLAGS_INIT} /NOLOGO)
   set(CMAKE_MODULE_LINKER_FLAGS_INIT ${CMAKE_EXE_LINKER_FLAGS_INIT} /NOLOGO)
 endif(MSVC)

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to