Commit ca801d1b by Nick Schonning

Build: Generate runtime info with Visual Studio

The /GR tag has the same affect as the previous method of removing the
RunTimeInfo value in the binding.vcxproj
http://msdn.microsoft.com/en-us/library/we6hfdy0.aspx
parent 13d63d86
...@@ -43,7 +43,16 @@ ...@@ -43,7 +43,16 @@
'GCC_ENABLE_CPP_RTTI': 'YES', 'GCC_ENABLE_CPP_RTTI': 'YES',
'MACOSX_DEPLOYMENT_TARGET': '10.7' 'MACOSX_DEPLOYMENT_TARGET': '10.7'
} }
}] }],
['OS=="win"', {
'msvs_settings': {
'VCCLCompilerTool': {
'AdditionalOptions': [
'/GR'
]
}
}
}]
] ]
} }
] ]
......
## Building bindings for Windows
When compiling the bindings for Windows, make sure to remove every instance of the following line from the Visual Studio project file (build/binding.vcxproj)
```xml
<RuntimeTypeInfo>false</RuntimeTypeInfo>
```
This line is known to cause some incompatibility with libsass and node.js.
[More details about the node-gyp issue](https://github.com/TooTallNate/node-gyp/issues/335)
\ No newline at end of file
## Building bindings for Windows
When compiling the bindings for Windows, make sure to remove every instance of the following line from the Visual Studio project file (build/binding.vcxproj)
```xml
<RuntimeTypeInfo>false</RuntimeTypeInfo>
```
This line is known to cause some incompatibility with libsass and node.js.
[More details about the node-gyp issue](https://github.com/TooTallNate/node-gyp/issues/335)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment