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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 'cflags': [ '-I/usr/pkg/include' ], | 264 'cflags': [ '-I/usr/pkg/include' ], |
265 }], | 265 }], |
266 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { | 266 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { |
267 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', | 267 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', |
268 '-Wnon-virtual-dtor' ], | 268 '-Wnon-virtual-dtor' ], |
269 }], | 269 }], |
270 ], | 270 ], |
271 }, | 271 }, |
272 'Release': { | 272 'Release': { |
273 'conditions': [ | 273 'conditions': [ |
274 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { | 274 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" \ |
| 275 or OS=="android"', { |
275 'cflags!': [ | 276 'cflags!': [ |
276 '-O2', | 277 '-O2', |
277 '-Os', | 278 '-Os', |
278 ], | 279 ], |
279 'cflags': [ | 280 'cflags': [ |
280 '-fdata-sections', | 281 '-fdata-sections', |
281 '-ffunction-sections', | 282 '-ffunction-sections', |
282 '-fomit-frame-pointer', | 283 '-fomit-frame-pointer', |
283 '-O3', | 284 '-O3', |
284 ], | 285 ], |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 # some test cases can cause stack overflow. | 342 # some test cases can cause stack overflow. |
342 # 'StackReserveSize': '297152', | 343 # 'StackReserveSize': '297152', |
343 }, | 344 }, |
344 }, | 345 }, |
345 }], | 346 }], |
346 ], | 347 ], |
347 }, | 348 }, |
348 }, | 349 }, |
349 }, | 350 }, |
350 } | 351 } |
OLD | NEW |