Chromium Code Reviews| Index: Makefile |
| diff --git a/Makefile b/Makefile |
| index d2c9a9dfacb57fe7b76aeee26e6477d250afac52..4ce771650e0f1e57ec8d8248598565c95b5990a9 100644 |
| --- a/Makefile |
| +++ b/Makefile |
| @@ -138,12 +138,16 @@ ifeq ($(deprecationwarnings), on) |
| GYPFLAGS += -Dv8_deprecation_warnings=1 |
| endif |
| # arm specific flags. |
| -# armv7=false/true |
| +# arm_version=<number | "default"> |
| +ifneq ($(strip $(arm_version)),) |
| + GYPFLAGS += -Darm_version=$(arm_version) |
| +else |
| +# Deprecated (use arm_version instead): armv7=false/true |
| ifeq ($(armv7), false) |
| - GYPFLAGS += -Darmv7=0 |
| + GYPFLAGS += -Darm_version=default |
|
Jakob Kummerow
2013/12/11 11:28:24
IIUC, armv7=false used to result in armv6, so let'
|
| else |
| ifeq ($(armv7), true) |
| - GYPFLAGS += -Darmv7=1 |
| + GYPFLAGS += -Darm_version=7 |
| endif |
| endif |
| # vfp2=off. Deprecated, use armfpu= |