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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
69 'OS': 'android', | 69 'OS': 'android', |
70 }, # variables | 70 }, # variables |
71 'target_defaults': { | 71 'target_defaults': { |
72 'defines': [ | 72 'defines': [ |
73 'ANDROID', | 73 'ANDROID', |
74 'V8_ANDROID_LOG_STDOUT', | 74 'V8_ANDROID_LOG_STDOUT', |
75 ], | 75 ], |
76 'configurations': { | 76 'configurations': { |
77 'Release': { | 77 'Release': { |
78 'cflags!': [ | 78 'cflags!': [ |
79 '-O2', | 79 '-O3', |
Jakob Kummerow
2013/06/05 09:25:21
Actually, I think you can delete everything here t
ulan
2013/06/05 09:30:59
Done.
| |
80 '-Os', | 80 '-Os', |
81 ], | 81 ], |
82 'cflags': [ | 82 'cflags': [ |
83 '-fdata-sections', | 83 '-fdata-sections', |
84 '-ffunction-sections', | 84 '-ffunction-sections', |
85 '-fomit-frame-pointer', | 85 '-fomit-frame-pointer', |
86 '-O3', | 86 '-O2', |
87 ], | 87 ], |
88 }, # Release | 88 }, # Release |
89 }, # configurations | 89 }, # configurations |
90 'cflags': [ '-Wno-abi', '-Wall', '-W', '-Wno-unused-parameter', | 90 'cflags': [ '-Wno-abi', '-Wall', '-W', '-Wno-unused-parameter', |
91 '-Wnon-virtual-dtor', '-fno-rtti', '-fno-exceptions', ], | 91 '-Wnon-virtual-dtor', '-fno-rtti', '-fno-exceptions', ], |
92 'target_conditions': [ | 92 'target_conditions': [ |
93 ['_toolset=="target"', { | 93 ['_toolset=="target"', { |
94 'cflags!': [ | 94 'cflags!': [ |
95 '-pthread', # Not supported by Android toolchain. | 95 '-pthread', # Not supported by Android toolchain. |
96 ], | 96 ], |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
250 'ldflags!': [ | 250 'ldflags!': [ |
251 '-Wl,-z,noexecstack', | 251 '-Wl,-z,noexecstack', |
252 '-Wl,--gc-sections', | 252 '-Wl,--gc-sections', |
253 '-Wl,-O1', | 253 '-Wl,-O1', |
254 '-Wl,--as-needed', | 254 '-Wl,--as-needed', |
255 ], | 255 ], |
256 }], | 256 }], |
257 ], # target_conditions | 257 ], # target_conditions |
258 }, # target_defaults | 258 }, # target_defaults |
259 } | 259 } |
OLD | NEW |