From 13f96d0a5efc140785a6de58bff9b24b80dd0cfd Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Tue, 21 Jun 2022 10:06:51 +0100 Subject: Fix armv7a on Android "end-of-support" build and documentation * Only print a warning for this build * Fix the wording in documentation to avoid misunderstanding. User can still run armv7a on Android, but we stop testing it and this build is discouraged Resolves COMPMID-5379 Signed-off-by: SiCong Li Change-Id: I3d00baa2479671bcef8882db0e3d3cc3043d5811 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7838 Tested-by: Arm Jenkins Benchmark: Arm Jenkins Reviewed-by: Gunes Bayir Comments-Addressed: Arm Jenkins --- SConstruct | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 890c51977d..be438e05f3 100644 --- a/SConstruct +++ b/SConstruct @@ -169,8 +169,7 @@ Export('install_bin') Help(vars.GenerateHelpText(env)) if 'armv7a' in env['arch'] and env['os'] == 'android': - print("armv7a is not supported on Android") - Exit(1) + print("WARNING: armv7a on Android is no longer maintained") if env['linker_script'] and env['os'] != 'bare_metal': print("Linker script is only supported for bare_metal builds") -- cgit v1.2.1