Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Side by Side Diff: Makefile

Issue 264593002: ARM: update defaults for flags (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/toolchain.gypi » ('j') | build/toolchain.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 GYPFLAGS += -Darm_fpu=vfp 162 GYPFLAGS += -Darm_fpu=vfp
163 endif 163 endif
164 # hardfp=on/off. Deprecated, use armfloatabi 164 # hardfp=on/off. Deprecated, use armfloatabi
165 ifeq ($(hardfp),on) 165 ifeq ($(hardfp),on)
166 GYPFLAGS += -Darm_float_abi=hard 166 GYPFLAGS += -Darm_float_abi=hard
167 else 167 else
168 ifeq ($(hardfp),off) 168 ifeq ($(hardfp),off)
169 GYPFLAGS += -Darm_float_abi=softfp 169 GYPFLAGS += -Darm_float_abi=softfp
170 endif 170 endif
171 endif 171 endif
172 # armneon=on/off 172 # armneon=on/off. Deprecated, use armfpu=
Benedikt Meurer 2014/05/02 06:51:52 I'd rather remove it completely...
vincent.belliard 2014/05/06 13:01:49 Done.
173 ifeq ($(armneon), on) 173 ifeq ($(armneon), on)
174 GYPFLAGS += -Darm_neon=1 174 GYPFLAGS += -Darm_neon=1
175 endif 175 endif
176 # fpu: armfpu=xxx 176 # fpu: armfpu=xxx
177 # xxx: vfp, vfpv3-d16, vfpv3, neon. 177 # xxx: vfp, vfpv3-d16, vfpv3, neon.
178 ifeq ($(armfpu),) 178 ifeq ($(armfpu),)
179 ifneq ($(vfp3), off) 179 ifneq ($(vfp3), off)
180 GYPFLAGS += -Darm_fpu=default 180 GYPFLAGS += -Darm_fpu=default
181 endif 181 endif
182 else 182 else
(...skipping 11 matching lines...) Expand all
194 ifeq ($(armthumb), off) 194 ifeq ($(armthumb), off)
195 GYPFLAGS += -Darm_thumb=0 195 GYPFLAGS += -Darm_thumb=0
196 else 196 else
197 ifeq ($(armthumb), on) 197 ifeq ($(armthumb), on)
198 GYPFLAGS += -Darm_thumb=1 198 GYPFLAGS += -Darm_thumb=1
199 endif 199 endif
200 endif 200 endif
201 # armtest=on 201 # armtest=on
202 # With this flag set, by default v8 will only use features implied 202 # With this flag set, by default v8 will only use features implied
203 # by the compiler (no probe). This is done by modifying the default 203 # by the compiler (no probe). This is done by modifying the default
204 # values of enable_armv7, enable_vfp2, enable_vfp3 and enable_32dregs. 204 # values of enable_armv7, enable_vfp2, enable_vfp3, enable_32dregs
205 # and enable_neon.
205 # Modifying these flags when launching v8 will enable the probing for 206 # Modifying these flags when launching v8 will enable the probing for
206 # the specified values. 207 # the specified values.
207 # When using the simulator, this flag is implied. 208 # When using the simulator, this flag is implied.
208 ifeq ($(armtest), on) 209 ifeq ($(armtest), on)
209 GYPFLAGS += -Darm_test=on 210 GYPFLAGS += -Darm_test=on
210 endif 211 endif
211 212
212 # ----------------- available targets: -------------------- 213 # ----------------- available targets: --------------------
213 # - "dependencies": pulls in external dependencies (currently: GYP) 214 # - "dependencies": pulls in external dependencies (currently: GYP)
214 # - "grokdump": rebuilds heap constants lists used by grokdump 215 # - "grokdump": rebuilds heap constants lists used by grokdump
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS 473 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS
473 474
474 # Dependencies. 475 # Dependencies.
475 # Remember to keep these in sync with the DEPS file. 476 # Remember to keep these in sync with the DEPS file.
476 dependencies: 477 dependencies:
477 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 478 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
478 --revision 1831 479 --revision 1831
479 svn checkout --force \ 480 svn checkout --force \
480 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ 481 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \
481 third_party/icu --revision 258359 482 third_party/icu --revision 258359
OLDNEW
« no previous file with comments | « no previous file | build/toolchain.gypi » ('j') | build/toolchain.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698