View Issue Details [ Jump to Notes ] | [ Print ] |
ID | Project | Category | View Status | Date Submitted | Last Update |
0013968 | CMake | CMake | public | 2013-03-01 17:30 | 2013-10-07 10:03 |
|
Reporter | goatboy160 | |
Assigned To | Brad King | |
Priority | high | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | Windows | OS | 7 | OS Version | 64 |
Product Version | | |
Target Version | CMake 2.8.11 | Fixed in Version | CMake 2.8.11 | |
|
Summary | 0013968: Setting CMAKE_CXX_STACK_SIZE to 0 for a Visual Studio project results in linker errors for 0.obj |
Description | When setting using the following in a exe target
set( CMAKE_CXX_STACK_SIZE "0" ) the project results in a linker error because there is a 0 that is set as an Additional Parameter in the target project.
Applying the attached patch corrects the issue. |
Tags | No tags attached. |
|
Attached Files | STACK.patch [^] (373 bytes) 2013-03-01 17:30 [Show Content] [Hide Content]--- release_version/Source/cmVisualStudio10TargetGenerator.cxx 2011-10-21 11:20:27.463353200 -0700
+++ trunk1/Source/cmVisualStudio10TargetGenerator.cxx 2011-10-21 11:53:03.913339400 -0700
@@ -1289,7 +1289,7 @@
std::string flags;
if(stackVal)
{
- flags += " ";
+ flags += " /STACK:";
flags += stackVal;
}
// assume incremental linking
|
|