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