Skip to content

Commit

Permalink
Same change for frt_sdl.
Browse files Browse the repository at this point in the history
  • Loading branch information
Relintai committed Apr 21, 2024
1 parent 740bc3f commit 83ec4fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion platform/frt_sdl/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def configure_lto(env):

def configure_arch(env):
if env['frt_arch'] == 'arm32v6':
env.Append(CCFLAGS=['-march=armv6', '-mfpu=vfp', '-mfloat-abi=hard'])
#env.Append(CCFLAGS=['-march=armv6', '-mfpu=vfp', '-mfloat-abi=hard'])
env.Append(CCFLAGS=['-marm', '-mfpu=vfp', '-mfloat-abi=hard'])
env.extra_suffix += '.arm32v6'
elif env['frt_arch'] == 'arm32v7':
env.Append(CCFLAGS=['-march=armv7-a', '-mfpu=neon-vfpv4', '-mfloat-abi=hard'])
Expand Down

0 comments on commit 83ec4fa

Please sign in to comment.