Title: [165228] trunk/Source/_javascript_Core
Revision
165228
Author
[email protected]
Date
2014-03-06 16:06:39 -0800 (Thu, 06 Mar 2014)

Log Message

Unreviewed build fix after r165128.

* _javascript_Core.vcxproj/_javascript_Core.vcxproj: The SEH flag was not getting set when
performing 'Production' and 'DebugSuffix' type builds.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (165227 => 165228)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-06 23:50:42 UTC (rev 165227)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-07 00:06:39 UTC (rev 165228)
@@ -1,3 +1,10 @@
+2014-03-06  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix after r165128.
+
+        * _javascript_Core.vcxproj/_javascript_Core.vcxproj: The SEH flag was not getting set when
+        performing 'Production' and 'DebugSuffix' type builds.
+
 2014-03-06  Julien Brianceau  <[email protected]>
 
         Unreviewed, fix style in my previous commit.

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj (165227 => 165228)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj	2014-03-06 23:50:42 UTC (rev 165227)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj	2014-03-07 00:06:39 UTC (rev 165228)
@@ -1469,7 +1469,9 @@
   <ItemGroup>
     <MASM Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\LowLevelInterpreterWin.asm">
       <UseSafeExceptionHandlers Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</UseSafeExceptionHandlers>
+      <UseSafeExceptionHandlers Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</UseSafeExceptionHandlers>
       <UseSafeExceptionHandlers Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</UseSafeExceptionHandlers>
+      <UseSafeExceptionHandlers Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</UseSafeExceptionHandlers>
       <UseSafeExceptionHandlers Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</UseSafeExceptionHandlers>
       <UseSafeExceptionHandlers Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</UseSafeExceptionHandlers>
     </MASM>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to