Browse Source

fix arm64 build on non-android platforma

pull/211/head
nillerusr 1 year ago committed by GitHub
parent
commit
9008da4f43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      wscript

5
wscript

@ -376,7 +376,10 @@ def configure(conf): @@ -376,7 +376,10 @@ def configure(conf):
if conf.env.DEST_CPU in ['x86', 'x86_64']:
flags += ['-mfpmath=sse']
elif conf.env.DEST_CPU in ['arm', 'aarch64']:
flags += ['-fsigned-char', '-mfpu=neon-vfpv4']
flags += ['-fsigned-char']
if conf.env.DEST_CPU == 'arm':
flags += ['-mfpu=neon-vfpv4']
if conf.env.DEST_OS == 'freebsd':
linkflags += ['-lexecinfo']

Loading…
Cancel
Save