mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
configure: fix mcpu
compiler parameter for RPI targets
This commit is contained in:
parent
4182483ea2
commit
0e67fb6011
1 changed files with 2 additions and 2 deletions
4
configure
vendored
4
configure
vendored
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue