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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 ifeq ($(extrachecks), on) | 76 ifeq ($(extrachecks), on) |
77 GYPFLAGS += -Dv8_enable_extra_checks=1 | 77 GYPFLAGS += -Dv8_enable_extra_checks=1 |
78 endif | 78 endif |
79 ifeq ($(extrachecks), off) | 79 ifeq ($(extrachecks), off) |
80 GYPFLAGS += -Dv8_enable_extra_checks=0 | 80 GYPFLAGS += -Dv8_enable_extra_checks=0 |
81 endif | 81 endif |
82 # gdbjit=on | 82 # gdbjit=on |
83 ifeq ($(gdbjit), on) | 83 ifeq ($(gdbjit), on) |
84 GYPFLAGS += -Dv8_enable_gdbjit=1 | 84 GYPFLAGS += -Dv8_enable_gdbjit=1 |
85 endif | 85 endif |
86 # liveobjectlist=on | |
87 ifeq ($(liveobjectlist), on) | |
88 GYPFLAGS += -Dv8_use_liveobjectlist=true | |
89 endif | |
90 # vfp2=off | 86 # vfp2=off |
91 ifeq ($(vfp2), off) | 87 ifeq ($(vfp2), off) |
92 GYPFLAGS += -Dv8_can_use_vfp2_instructions=false | 88 GYPFLAGS += -Dv8_can_use_vfp2_instructions=false |
93 else | 89 else |
94 GYPFLAGS += -Dv8_can_use_vfp2_instructions=true -Darm_fpu=vfpv2 | 90 GYPFLAGS += -Dv8_can_use_vfp2_instructions=true -Darm_fpu=vfpv2 |
95 endif | 91 endif |
96 # vfp3=off | 92 # vfp3=off |
97 ifeq ($(vfp3), off) | 93 ifeq ($(vfp3), off) |
98 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false | 94 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false |
99 else | 95 else |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 # Stores current GYPFLAGS in a file. | 293 # Stores current GYPFLAGS in a file. |
298 $(ENVFILE).new: | 294 $(ENVFILE).new: |
299 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ | 295 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ |
300 echo "CXX=$(CXX)" >> $(ENVFILE).new | 296 echo "CXX=$(CXX)" >> $(ENVFILE).new |
301 | 297 |
302 # Dependencies. | 298 # Dependencies. |
303 # Remember to keep these in sync with the DEPS file. | 299 # Remember to keep these in sync with the DEPS file. |
304 dependencies: | 300 dependencies: |
305 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 301 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ |
306 --revision 1501 | 302 --revision 1501 |
OLD | NEW |