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 # 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 # vfp3=off | 84 # vfp3=off |
85 ifeq ($(vfp3), off) | 85 ifeq ($(vfp3), off) |
86 GYPFLAGS += -Dv8_can_use_vfp_instructions=false | 86 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false |
87 else | 87 else |
88 GYPFLAGS += -Dv8_can_use_vfp_instructions=true | 88 GYPFLAGS += -Dv8_can_use_vfp3_instructions=true |
89 endif | 89 endif |
90 # debuggersupport=off | 90 # debuggersupport=off |
91 ifeq ($(debuggersupport), off) | 91 ifeq ($(debuggersupport), off) |
92 GYPFLAGS += -Dv8_enable_debugger_support=0 | 92 GYPFLAGS += -Dv8_enable_debugger_support=0 |
93 endif | 93 endif |
94 # soname_version=1.2.3 | 94 # soname_version=1.2.3 |
95 ifdef soname_version | 95 ifdef soname_version |
96 GYPFLAGS += -Dsoname_version=$(soname_version) | 96 GYPFLAGS += -Dsoname_version=$(soname_version) |
97 endif | 97 endif |
98 # werror=no | 98 # werror=no |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 # Stores current GYPFLAGS in a file. | 281 # Stores current GYPFLAGS in a file. |
282 $(ENVFILE).new: | 282 $(ENVFILE).new: |
283 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ | 283 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ |
284 echo "CXX=$(CXX)" >> $(ENVFILE).new | 284 echo "CXX=$(CXX)" >> $(ENVFILE).new |
285 | 285 |
286 # Dependencies. | 286 # Dependencies. |
287 # Remember to keep these in sync with the DEPS file. | 287 # Remember to keep these in sync with the DEPS file. |
288 dependencies: | 288 dependencies: |
289 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 289 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ |
290 --revision 1501 | 290 --revision 1501 |
OLD | NEW |