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

Side by Side Diff: build/standalone.gypi

Issue 1899783002: 32-bit linux: Force 16-byte stack alignment. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 'target_conditions': [ 456 'target_conditions': [
457 ['_toolset=="target"', { 457 ['_toolset=="target"', {
458 'cflags+': [ 458 'cflags+': [
459 '-Wno-format-pedantic', 459 '-Wno-format-pedantic',
460 ], 460 ],
461 }], 461 }],
462 ], 462 ],
463 }], 463 }],
464 ], 464 ],
465 }], 465 }],
466 ['clang==1 and target_arch=="ia32"', {
467 'cflags': ['-mstack-alignment=16', '-mstackrealign'],
468 }],
466 ['fastbuild!=0', { 469 ['fastbuild!=0', {
467 'conditions': [ 470 'conditions': [
468 ['OS=="win" and fastbuild==1', { 471 ['OS=="win" and fastbuild==1', {
469 'msvs_settings': { 472 'msvs_settings': {
470 'VCLinkerTool': { 473 'VCLinkerTool': {
471 # This tells the linker to generate .pdbs, so that 474 # This tells the linker to generate .pdbs, so that
472 # we can get meaningful stack traces. 475 # we can get meaningful stack traces.
473 'GenerateDebugInformation': 'true', 476 'GenerateDebugInformation': 'true',
474 }, 477 },
475 'VCCLCompilerTool': { 478 'VCCLCompilerTool': {
(...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 '-fsanitize=cfi-vcall', 1442 '-fsanitize=cfi-vcall',
1440 '-fsanitize=cfi-derived-cast', 1443 '-fsanitize=cfi-derived-cast',
1441 '-fsanitize=cfi-unrelated-cast', 1444 '-fsanitize=cfi-unrelated-cast',
1442 ], 1445 ],
1443 }], 1446 }],
1444 ], 1447 ],
1445 }, 1448 },
1446 }], 1449 }],
1447 ], 1450 ],
1448 } 1451 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698