diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-03-20 00:28:46 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-03-20 00:28:46 +0900 |
| commit | dc757f70fdcaf2ff27af7811c974117bb4ce8739 (patch) | |
| tree | 062937876d2923cd683b51931603e5f82de93a64 | |
| parent | 0e218f53569002f8f5979629ae91f5fb28544251 (diff) | |
| parent | f6f70c86dba4917b1d5088fa61483fc1adf5d39d (diff) | |
| download | mruby-dc757f70fdcaf2ff27af7811c974117bb4ce8739.tar.gz mruby-dc757f70fdcaf2ff27af7811c974117bb4ce8739.zip | |
Merge pull request #2747 from jbreeden/vcpp_exceptions
Fix exceptions for visualcpp
| -rw-r--r-- | tasks/toolchains/visualcpp.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/toolchains/visualcpp.rake b/tasks/toolchains/visualcpp.rake index 8838f8a41..eaf013068 100644 --- a/tasks/toolchains/visualcpp.rake +++ b/tasks/toolchains/visualcpp.rake @@ -11,7 +11,7 @@ MRuby::Toolchain.new(:visualcpp) do |conf| [conf.cxx].each do |cxx| cxx.command = ENV['CXX'] || 'cl.exe' - cxx.flags = [ENV['CXXFLAGS'] || ENV['CFLAGS'] || %w(/c /nologo /W3 /Zi /MD /O2 /EHsc /D_CRT_SECURE_NO_WARNINGS)] + cxx.flags = [ENV['CXXFLAGS'] || ENV['CFLAGS'] || %w(/c /nologo /W3 /Zi /MD /O2 /EHs /D_CRT_SECURE_NO_WARNINGS)] cxx.defines = %w(DISABLE_GEMS MRB_STACK_EXTEND_DOUBLING) cxx.option_include_path = '/I%s' cxx.option_define = '/D%s' |
