From 653e34a93544522831da6f1aab8696ccda9834a1 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/compile.v b/android/compile.v index 3a6732e9..29eff77f 100644 --- a/android/compile.v +++ b/android/compile.v @@ -359,10 +359,10 @@ pub fn compile(opt CompileOptions) ! { ldflags << ['-llog', '-landroid', '-lm'] ldflags << ['-shared'] // <- Android loads native code via a library in NativeActivity - mut cflags_arm64 := ['-m64'] + mut cflags_arm64 := ['-m64', '-mfpu=neon-vfpv4'] 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' }