From 0e67fb6011f6ce06d0c0c66e47f8eca8802a3e82 Mon Sep 17 00:00:00 2001 From: cmitu <31816814+cmitu@users.noreply.github.com> Date: Wed, 28 Sep 2022 04:15:19 +0100 Subject: [PATCH] configure: fix `mcpu` compiler parameter for RPI targets --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index a710718c..f0bad743 100755 --- a/configure +++ b/configure @@ -74,11 +74,11 @@ set_platform() platform=$1 case "$platform" in rpi1) - MFLAGS="mcpu=arm1176jzf-s -mfpu=vfp" + MFLAGS="-mcpu=arm1176jzf-s -mfpu=vfp" have_gles="yes" ;; rpi2) - MFLAGS="mcpu=cortex-a7 -mfpu=neon" + MFLAGS="-mcpu=cortex-a7 -mfpu=neon" have_gles="yes" ;; generic) -- 2.39.2