Commit b6113cbb by Nick Schonning

Merge pull request #214 from nschonni/fix-msvcc-runtime-info-issue

Build: Generate runtime info with Visual Studio
parents 13d63d86 ca801d1b
......@@ -43,7 +43,16 @@
'GCC_ENABLE_CPP_RTTI': 'YES',
'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