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

Side by Side Diff: build/standalone.gypi

Issue 1006583004: Fix host_arch detection for AIX and one new warning as error (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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 | « build/detect_v8_host_arch.py ('k') | src/hydrogen-bce.cc » ('j') | 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 '-Wno-long-long', 334 '-Wno-long-long',
335 '-pthread', 335 '-pthread',
336 '-fno-exceptions', 336 '-fno-exceptions',
337 '-pedantic', 337 '-pedantic',
338 # Don't warn about the "struct foo f = {0};" initialization pattern. 338 # Don't warn about the "struct foo f = {0};" initialization pattern.
339 '-Wno-missing-field-initializers', 339 '-Wno-missing-field-initializers',
340 ], 340 ],
341 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti', '-std=gnu++0x' ], 341 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti', '-std=gnu++0x' ],
342 'ldflags': [ '-pthread', ], 342 'ldflags': [ '-pthread', ],
343 'conditions': [ 343 'conditions': [
344 [ 'host_arch=="ppc64"', { 344 [ 'host_arch=="ppc64" and OS!="aix"', {
345 'cflags': [ '-mminimal-toc' ], 345 'cflags': [ '-mminimal-toc' ],
346 }], 346 }],
347 [ 'visibility=="hidden" and v8_enable_backtrace==0', { 347 [ 'visibility=="hidden" and v8_enable_backtrace==0', {
348 'cflags': [ '-fvisibility=hidden' ], 348 'cflags': [ '-fvisibility=hidden' ],
349 }], 349 }],
350 [ 'component=="shared_library"', { 350 [ 'component=="shared_library"', {
351 'cflags': [ '-fPIC', ], 351 'cflags': [ '-fPIC', ],
352 }], 352 }],
353 ], 353 ],
354 }, 354 },
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { 582 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
583 'make_global_settings': [ 583 'make_global_settings': [
584 ['CC_wrapper', '<(gomadir)/gomacc'], 584 ['CC_wrapper', '<(gomadir)/gomacc'],
585 ['CXX_wrapper', '<(gomadir)/gomacc'], 585 ['CXX_wrapper', '<(gomadir)/gomacc'],
586 ['CC.host_wrapper', '<(gomadir)/gomacc'], 586 ['CC.host_wrapper', '<(gomadir)/gomacc'],
587 ['CXX.host_wrapper', '<(gomadir)/gomacc'], 587 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
588 ], 588 ],
589 }], 589 }],
590 ], 590 ],
591 } 591 }
OLDNEW
« no previous file with comments | « build/detect_v8_host_arch.py ('k') | src/hydrogen-bce.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698