From: Jiang Liu Date: Tue, 7 Jan 2014 14:17:12 +0000 (+0800) Subject: arm64, jump label: detect %c support for ARM64 X-Git-Tag: firefly_0821_release~176^2~4494^2~12 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=f3c003f72dfb2497056bcbb864885837a1968ed5;p=firefly-linux-kernel-4.4.55.git arm64, jump label: detect %c support for ARM64 As commit a9468f30b5eac6 "ARM: 7333/2: jump label: detect %c support for ARM", this patch detects the same thing for ARM64 because some ARM64 GCC versions have the same issue. Some versions of ARM64 GCC which do support asm goto, do not support the %c specifier. Since we need the %c to support jump labels on ARM64, detect that too in the asm goto detection script to avoid build errors with these versions. Acked-by: Will Deacon Signed-off-by: Jiang Liu Signed-off-by: Catalin Marinas --- diff --git a/scripts/gcc-goto.sh b/scripts/gcc-goto.sh index a2af2e88daf3..c9469d34ecc6 100644 --- a/scripts/gcc-goto.sh +++ b/scripts/gcc-goto.sh @@ -5,7 +5,7 @@ cat << "END" | $@ -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y" int main(void) { -#ifdef __arm__ +#if defined(__arm__) || defined(__aarch64__) /* * Not related to asm goto, but used by jump label * and broken on some ARM GCC versions (see GCC Bug 48637).