Skip to content

Commit 704b8aa

Browse files
authored
Merge pull request #323 from coderamen666/patch-1
Allow compilation on Raspberry Pi OS 32 bit
2 parents f402495 + c4f13f0 commit 704b8aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ def configure(conf):
527527
flags += ['-fsigned-char']
528528

529529
if conf.env.DEST_CPU == 'arm':
530-
flags += ['-mfpu=neon-vfpv4']
530+
flags += ['-march=armv7-a', '-mfpu=neon-vfpv4']
531531

532532
if conf.env.DEST_OS == 'freebsd':
533533
linkflags += ['-lexecinfo']

0 commit comments

Comments
 (0)