OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 | 262 |
263 # -fstrict-aliasing. Mainline gcc | 263 # -fstrict-aliasing. Mainline gcc |
264 # enables this at -O2 and above, | 264 # enables this at -O2 and above, |
265 # but Apple gcc does not unless it | 265 # but Apple gcc does not unless it |
266 # is specified explicitly. | 266 # is specified explicitly. |
267 'GCC_STRICT_ALIASING': 'YES', | 267 'GCC_STRICT_ALIASING': 'YES', |
268 }, | 268 }, |
269 }], | 269 }], |
270 ['OS=="win"', { | 270 ['OS=="win"', { |
271 'msvs_configuration_attributes': { | 271 'msvs_configuration_attributes': { |
272 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', | 272 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', |
273 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 273 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
274 'CharacterSet': '1', | 274 'CharacterSet': '1', |
275 }, | 275 }, |
276 'msvs_settings': { | 276 'msvs_settings': { |
277 'VCCLCompilerTool': { | 277 'VCCLCompilerTool': { |
278 'Optimization': '2', | 278 'Optimization': '2', |
279 'InlineFunctionExpansion': '2', | 279 'InlineFunctionExpansion': '2', |
280 'EnableIntrinsicFunctions': 'true', | 280 'EnableIntrinsicFunctions': 'true', |
281 'FavorSizeOrSpeed': '0', | 281 'FavorSizeOrSpeed': '0', |
282 'OmitFramePointers': 'true', | 282 'OmitFramePointers': 'true', |
(...skipping 17 matching lines...) Expand all Loading... |
300 # some test cases can cause stack overflow. | 300 # some test cases can cause stack overflow. |
301 # 'StackReserveSize': '297152', | 301 # 'StackReserveSize': '297152', |
302 }, | 302 }, |
303 }, | 303 }, |
304 }], | 304 }], |
305 ], | 305 ], |
306 }, | 306 }, |
307 }, | 307 }, |
308 }, | 308 }, |
309 } | 309 } |
OLD | NEW |