| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |