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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 GYPFLAGS += -Dv8_enable_disassembler=1 | 55 GYPFLAGS += -Dv8_enable_disassembler=1 |
56 endif | 56 endif |
57 # objectprint=on | 57 # objectprint=on |
58 ifeq ($(objectprint), on) | 58 ifeq ($(objectprint), on) |
59 GYPFLAGS += -Dv8_object_print=1 | 59 GYPFLAGS += -Dv8_object_print=1 |
60 endif | 60 endif |
61 # snapshot=off | 61 # snapshot=off |
62 ifeq ($(snapshot), off) | 62 ifeq ($(snapshot), off) |
63 GYPFLAGS += -Dv8_use_snapshot='false' | 63 GYPFLAGS += -Dv8_use_snapshot='false' |
64 endif | 64 endif |
| 65 # extrachecks=on/off |
| 66 ifeq ($(extrachecks), on) |
| 67 GYPFLAGS += -Dv8_enable_extra_checks=1 |
| 68 endif |
| 69 ifeq ($(extrachecks), off) |
| 70 GYPFLAGS += -Dv8_enable_extra_checks=0 |
| 71 endif |
65 # gdbjit=on | 72 # gdbjit=on |
66 ifeq ($(gdbjit), on) | 73 ifeq ($(gdbjit), on) |
67 GYPFLAGS += -Dv8_enable_gdbjit=1 | 74 GYPFLAGS += -Dv8_enable_gdbjit=1 |
68 endif | 75 endif |
69 # liveobjectlist=on | 76 # liveobjectlist=on |
70 ifeq ($(liveobjectlist), on) | 77 ifeq ($(liveobjectlist), on) |
71 GYPFLAGS += -Dv8_use_liveobjectlist=true | 78 GYPFLAGS += -Dv8_use_liveobjectlist=true |
72 endif | 79 endif |
73 # vfp3=off | 80 # vfp3=off |
74 ifeq ($(vfp3), off) | 81 ifeq ($(vfp3), off) |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 | 276 |
270 # Stores current GYPFLAGS in a file. | 277 # Stores current GYPFLAGS in a file. |
271 $(ENVFILE).new: | 278 $(ENVFILE).new: |
272 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ | 279 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ |
273 echo "CXX=$(CXX)" >> $(ENVFILE).new | 280 echo "CXX=$(CXX)" >> $(ENVFILE).new |
274 | 281 |
275 # Dependencies. | 282 # Dependencies. |
276 dependencies: | 283 dependencies: |
277 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 284 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ |
278 --revision 1282 | 285 --revision 1282 |
OLD | NEW |