Commit ad5185ce authored by Jonathan Liu's avatar Jonathan Liu
Browse files

Display error if building for ARM architecture older than ARMv6


Chromium is only supported on ARMv6 and ARMv7 for ARM architecture.

Change-Id: I0493c9ba2baf4a537f759286622056093c0d4a25
Reviewed-by: default avatarAndras Becsi <andras.becsi@digia.com>
Showing with 1 addition and 0 deletions
...@@ -61,6 +61,7 @@ cross_compile { ...@@ -61,6 +61,7 @@ cross_compile {
!isEmpty(MARMV) { !isEmpty(MARMV) {
MARMV = $$split(MARMV,) MARMV = $$split(MARMV,)
MARMV = $$member(MARMV, 0) MARMV = $$member(MARMV, 0)
lessThan(MARMV, 6): error("$$MARCH architecture is not supported")
GYP_ARGS += "-D arm_version=\"$$MARMV\"" GYP_ARGS += "-D arm_version=\"$$MARMV\""
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment