| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 GYPFLAGS += -Dv8_enable_extra_checks=0 | 74 GYPFLAGS += -Dv8_enable_extra_checks=0 |
| 75 endif | 75 endif |
| 76 # gdbjit=on | 76 # gdbjit=on |
| 77 ifeq ($(gdbjit), on) | 77 ifeq ($(gdbjit), on) |
| 78 GYPFLAGS += -Dv8_enable_gdbjit=1 | 78 GYPFLAGS += -Dv8_enable_gdbjit=1 |
| 79 endif | 79 endif |
| 80 # liveobjectlist=on | 80 # liveobjectlist=on |
| 81 ifeq ($(liveobjectlist), on) | 81 ifeq ($(liveobjectlist), on) |
| 82 GYPFLAGS += -Dv8_use_liveobjectlist=true | 82 GYPFLAGS += -Dv8_use_liveobjectlist=true |
| 83 endif | 83 endif |
| 84 # vfp2=off |
| 85 ifeq ($(vfp2), off) |
| 86 GYPFLAGS += -Dv8_can_use_vfp2_instructions=false |
| 87 else |
| 88 GYPFLAGS += -Dv8_can_use_vfp2_instructions=true |
| 89 endif |
| 84 # vfp3=off | 90 # vfp3=off |
| 85 ifeq ($(vfp3), off) | 91 ifeq ($(vfp3), off) |
| 86 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false | 92 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false |
| 87 else | 93 else |
| 88 GYPFLAGS += -Dv8_can_use_vfp3_instructions=true | 94 GYPFLAGS += -Dv8_can_use_vfp3_instructions=true |
| 89 endif | 95 endif |
| 90 # debuggersupport=off | 96 # debuggersupport=off |
| 91 ifeq ($(debuggersupport), off) | 97 ifeq ($(debuggersupport), off) |
| 92 GYPFLAGS += -Dv8_enable_debugger_support=0 | 98 GYPFLAGS += -Dv8_enable_debugger_support=0 |
| 93 endif | 99 endif |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 # Stores current GYPFLAGS in a file. | 287 # Stores current GYPFLAGS in a file. |
| 282 $(ENVFILE).new: | 288 $(ENVFILE).new: |
| 283 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ | 289 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ |
| 284 echo "CXX=$(CXX)" >> $(ENVFILE).new | 290 echo "CXX=$(CXX)" >> $(ENVFILE).new |
| 285 | 291 |
| 286 # Dependencies. | 292 # Dependencies. |
| 287 # Remember to keep these in sync with the DEPS file. | 293 # Remember to keep these in sync with the DEPS file. |
| 288 dependencies: | 294 dependencies: |
| 289 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 295 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ |
| 290 --revision 1501 | 296 --revision 1501 |
| OLD | NEW |