Ignore:
Timestamp:
Apr 14, 2008, 8:25:05 AM (17 years ago)
Author:
Adam Roben
Message:

Windows build fix

Rubberstamped by Alexey Proskuryakov.

  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: Disable the "potentially uninitialized variable" warning for grammar.cpp, as it seems to be incorrect. yylval gets initialized by the lexer, but MSVC doesn't seem to understand this.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj

    r31404 r31861  
    680680                                        >
    681681                                        <FileConfiguration
     682                                                Name="Debug|Win32"
     683                                                >
     684                                                <Tool
     685                                                        Name="VCCLCompilerTool"
     686                                                        DisableSpecificWarnings="4701"
     687                                                />
     688                                        </FileConfiguration>
     689                                        <FileConfiguration
     690                                                Name="Release|Win32"
     691                                                >
     692                                                <Tool
     693                                                        Name="VCCLCompilerTool"
     694                                                        DisableSpecificWarnings="4701"
     695                                                />
     696                                        </FileConfiguration>
     697                                        <FileConfiguration
     698                                                Name="Debug_Internal|Win32"
     699                                                >
     700                                                <Tool
     701                                                        Name="VCCLCompilerTool"
     702                                                        DisableSpecificWarnings="4701"
     703                                                />
     704                                        </FileConfiguration>
     705                                        <FileConfiguration
    682706                                                Name="Release_PGO|Win32"
    683707                                                >
     
    685709                                                        Name="VCCLCompilerTool"
    686710                                                        WholeProgramOptimization="false"
     711                                                        DisableSpecificWarnings="4701"
    687712                                                />
    688713                                        </FileConfiguration>
Note: See TracChangeset for help on using the changeset viewer.