Merge pull request #323 from coderamen666/patch-1

Allow compilation on Raspberry Pi OS 32 bit
This commit is contained in:
nillerusr 2023-12-13 22:57:38 +03:00 committed by GitHub
commit 704b8aa98e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -527,7 +527,7 @@ def configure(conf):
flags += ['-fsigned-char']
if conf.env.DEST_CPU == 'arm':
flags += ['-mfpu=neon-vfpv4']
flags += ['-march=armv7-a', '-mfpu=neon-vfpv4']
if conf.env.DEST_OS == 'freebsd':
linkflags += ['-lexecinfo']