1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-19 23:24:49 +00:00

Enable exception handling for C++ with MSVC.

This commit is contained in:
Calvin Rose 2020-09-04 21:43:34 -05:00
parent 25156eb83e
commit 2d275c4782

2
jpm
View File

@ -356,7 +356,7 @@
["-std=c99" "-Wall" "-Wextra"]))
(def default-cppflags
(if is-win
["/nologo" "/MD"]
["/nologo" "/MD" "/EHsc"]
["-std=c++11" "-Wall" "-Wextra"]))
(def default-ldflags [])