We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e6e750 commit 9008da4Copy full SHA for 9008da4
wscript
@@ -376,7 +376,10 @@ def configure(conf):
376
if conf.env.DEST_CPU in ['x86', 'x86_64']:
377
flags += ['-mfpmath=sse']
378
elif conf.env.DEST_CPU in ['arm', 'aarch64']:
379
- flags += ['-fsigned-char', '-mfpu=neon-vfpv4']
+ flags += ['-fsigned-char']
380
+
381
+ if conf.env.DEST_CPU == 'arm':
382
+ flags += ['-mfpu=neon-vfpv4']
383
384
if conf.env.DEST_OS == 'freebsd':
385
linkflags += ['-lexecinfo']
0 commit comments