From: cmitu <31816814+cmitu@users.noreply.github.com> Date: Wed, 28 Sep 2022 03:15:19 +0000 (+0100) Subject: configure: fix `mcpu` compiler parameter for RPI targets X-Git-Tag: v2.00~290 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e67fb6011f6ce06d0c0c66e47f8eca8802a3e82;p=picodrive.git configure: fix `mcpu` compiler parameter for RPI targets --- 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)