OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 }], | 185 }], |
186 ], | 186 ], |
187 }, | 187 }, |
188 'Release': { | 188 'Release': { |
189 'conditions': [ | 189 'conditions': [ |
190 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 190 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
191 'cflags!': [ | 191 'cflags!': [ |
192 '-O2', | 192 '-O2', |
193 '-Os', | 193 '-Os', |
194 ], | 194 ], |
| 195 'cflags': [ |
| 196 '-fomit-frame-pointer', |
| 197 '-O3', |
| 198 ], |
195 'conditions': [ | 199 'conditions': [ |
196 [ 'gcc_version==44', { | 200 [ 'gcc_version==44', { |
197 'cflags': [ | 201 'cflags': [ |
198 # Avoid crashes with gcc 4.4 in the v8 test suite. | 202 # Avoid crashes with gcc 4.4 in the v8 test suite. |
199 '-fno-tree-vrp', | 203 '-fno-tree-vrp', |
200 ], | 204 ], |
201 }], | 205 }], |
202 ], | 206 ], |
203 }], | 207 }], |
204 ['OS=="freebsd" or OS=="openbsd"', { | 208 ['OS=="freebsd" or OS=="openbsd"', { |
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1056 }], | 1060 }], |
1057 ], | 1061 ], |
1058 'dependencies': [ | 1062 'dependencies': [ |
1059 'v8' | 1063 'v8' |
1060 ], | 1064 ], |
1061 }, | 1065 }, |
1062 ], | 1066 ], |
1063 }], | 1067 }], |
1064 ], | 1068 ], |
1065 } | 1069 } |
OLD | NEW |