Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: tools/gyp/v8.gyp

Issue 118153: Change stack alignment on linux to 16 bytes to keep gcc 4.4 happy.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/platform-linux.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 ], 300 ],
301 'cflags': [ 301 'cflags': [
302 '-fomit-frame-pointer', 302 '-fomit-frame-pointer',
303 '-O3', 303 '-O3',
304 ], 304 ],
305 'conditions': [ 305 'conditions': [
306 [ 'gcc_version=="44"', { 306 [ 'gcc_version=="44"', {
307 'cflags': [ 307 'cflags': [
308 # Avoid gcc 4.4 strict aliasing issues in dtoa.c 308 # Avoid gcc 4.4 strict aliasing issues in dtoa.c
309 '-fno-strict-aliasing', 309 '-fno-strict-aliasing',
310 # Avoid gcc 4.4 mksnapshot segfault.
311 '-fno-tree-vectorize',
312 # Avoid crashes with gcc 4.4 in the v8 test suite. 310 # Avoid crashes with gcc 4.4 in the v8 test suite.
313 '-fno-tree-vrp', 311 '-fno-tree-vrp',
314 ], 312 ],
315 }], 313 }],
316 ], 314 ],
317 'cflags_cc': [ 315 'cflags_cc': [
318 '-fno-rtti', 316 '-fno-rtti',
319 ], 317 ],
320 }], 318 }],
321 ['OS=="win"', { 319 ['OS=="win"', {
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 ], 732 ],
735 'msvs_settings': { 733 'msvs_settings': {
736 'VCLinkerTool': { 734 'VCLinkerTool': {
737 'AdditionalOptions': '/IGNORE:4221 /NXCOMPAT', 735 'AdditionalOptions': '/IGNORE:4221 /NXCOMPAT',
738 }, 736 },
739 }, 737 },
740 }, 738 },
741 }], 739 }],
742 ], 740 ],
743 } 741 }
OLDNEW
« no previous file with comments | « src/platform-linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698