From f54747c213c9dde405d9152d84b14d06541cefda Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 29 Nov 2022 14:23:32 +0100 Subject: [PATCH] makepanda: Make error about Android architecture suggest solution --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 405ce75fc0..56493f576e 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -434,7 +434,7 @@ def SetTarget(target, arch=None): ANDROID_ABI = 'x86_64' ANDROID_TRIPLE = 'x86_64-linux-android' else: - exit('Android architecture must be arm, armv7a, aarch64, mips, mips64, x86 or x86_64') + exit('Android architecture must be arm, armv7a, aarch64, mips, mips64, x86 or x86_64, use --arch to specify') TOOLCHAIN_PREFIX = ANDROID_TRIPLE + '-'