Procházet zdrojové kódy

Merge pull request #13146 from hoelzl/pr-add-ehsc-flag-for-vc

Add explicit exception model flag for Visual C++
Rémi Verschelde před 8 roky
rodič
revize
f8fd9a4a62
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      SConstruct

+ 2 - 0
SConstruct

@@ -326,6 +326,8 @@ if selected_platform in platform_list:
             env.Append(CCFLAGS=['/W2'] + disable_nonessential_warnings)
             env.Append(CCFLAGS=['/W2'] + disable_nonessential_warnings)
         else: # 'no'
         else: # 'no'
             env.Append(CCFLAGS=['/w'])
             env.Append(CCFLAGS=['/w'])
+        # Set exception handling model to avoid warnings caused by Windows system headers.
+        env.Append(CCFLAGS=['/EHsc'])
     else: # Rest of the world
     else: # Rest of the world
         if (env["warnings"] == 'extra'):
         if (env["warnings"] == 'extra'):
             env.Append(CCFLAGS=['-Wall', '-Wextra'])
             env.Append(CCFLAGS=['-Wall', '-Wextra'])