mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
fix building for arm arch below armv6 (gp2x, bittboy)
This commit is contained in:
parent
15eed40550
commit
5ab80df952
2 changed files with 4 additions and 1 deletions
4
configure
vendored
4
configure
vendored
|
@ -430,6 +430,10 @@ fi
|
|||
if [ "$need_zlib" = "yes" ]; then
|
||||
echo "PLATFORM_ZLIB = 1" >> $config_mak
|
||||
fi
|
||||
if [ "$ARCH" = "arm" -a "$have_armv6" != "yes" -a "$have_armv7" != "yes" ]; then
|
||||
# pass info to cyclone not to use newer arm arch instructions
|
||||
echo "HAVE_ARMv6 = 0" >> $config_mak
|
||||
fi
|
||||
|
||||
# GP2X toolchains are too old for UAL asm,
|
||||
# so add this here to not litter main Makefile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue