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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 endif | 138 endif |
139 # regexp=interpreted | 139 # regexp=interpreted |
140 ifeq ($(regexp), interpreted) | 140 ifeq ($(regexp), interpreted) |
141 GYPFLAGS += -Dv8_interpreted_regexp=1 | 141 GYPFLAGS += -Dv8_interpreted_regexp=1 |
142 endif | 142 endif |
143 # i18nsupport=off | 143 # i18nsupport=off |
144 ifeq ($(i18nsupport), off) | 144 ifeq ($(i18nsupport), off) |
145 GYPFLAGS += -Dv8_enable_i18n_support=0 | 145 GYPFLAGS += -Dv8_enable_i18n_support=0 |
146 TESTFLAGS += --noi18n | 146 TESTFLAGS += --noi18n |
147 endif | 147 endif |
148 # deprecation_warnings=on | 148 # deprecationwarnings=on |
149 ifeq ($(deprecationwarnings), on) | 149 ifeq ($(deprecationwarnings), on) |
150 GYPFLAGS += -Dv8_deprecation_warnings=1 | 150 GYPFLAGS += -Dv8_deprecation_warnings=1 |
151 endif | 151 endif |
| 152 # imminentdeprecationwarnings=on |
| 153 ifeq ($(imminentdeprecationwarnings), on) |
| 154 GYPFLAGS += -Dv8_imminent_deprecation_warnings=1 |
| 155 endif |
152 # asan=on | 156 # asan=on |
153 ifeq ($(asan), on) | 157 ifeq ($(asan), on) |
154 GYPFLAGS += -Dasan=1 -Dclang=1 | 158 GYPFLAGS += -Dasan=1 -Dclang=1 |
155 TESTFLAGS += --asan | 159 TESTFLAGS += --asan |
156 ifeq ($(lsan), on) | 160 ifeq ($(lsan), on) |
157 GYPFLAGS += -Dlsan=1 | 161 GYPFLAGS += -Dlsan=1 |
158 endif | 162 endif |
159 endif | 163 endif |
160 ifdef embedscript | 164 ifdef embedscript |
161 GYPFLAGS += -Dembed_script=$(embedscript) | 165 GYPFLAGS += -Dembed_script=$(embedscript) |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 # We need to manually set the stack limit here, to work around bugs in | 499 # We need to manually set the stack limit here, to work around bugs in |
496 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. | 500 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. |
497 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) | 501 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) |
498 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' | 502 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' |
499 | 503 |
500 gtags.clean: | 504 gtags.clean: |
501 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS | 505 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS |
502 | 506 |
503 dependencies builddeps: | 507 dependencies builddeps: |
504 $(error Use 'gclient sync' instead) | 508 $(error Use 'gclient sync' instead) |
OLD | NEW |