From d9c7187b1648af92135c8c66f3a6c82cdc7d80a1 Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Mon, 1 Apr 2024 06:17:25 +0200 Subject: [PATCH] inlcude x64 as test, as it fails without for all others --- android/compile.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/compile.v b/android/compile.v index 3a6732e9..9087da62 100644 --- a/android/compile.v +++ b/android/compile.v @@ -362,7 +362,7 @@ pub fn compile(opt CompileOptions) ! { mut cflags_arm64 := ['-m64'] mut cflags_arm32 := ['-mfloat-abi=softfp', '-mfpu=neon-vfpv4', '-m32'] mut cflags_x86 := ['-march=i686', '-mssse3', '-mfpmath=sse', '-mfpu=neon-vfpv4', '-m32'] - mut cflags_x86_64 := ['-march=x86-64', '-msse4.2', '-mpopcnt', '-m64'] + mut cflags_x86_64 := ['-march=x86-64', '-msse4.2', '-mpopcnt', '-m64', '-mfpu=neon-vfpv4'] $if gcc { cflags_arm32 << '-mfp16-format=ieee' }