This commit is contained in:
ItzVlλdik 2026-01-05 18:41:31 +00:00 committed by GitHub
commit c3de6f3ba3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -112,8 +112,8 @@ private:
struct abc_t struct abc_t
{ {
short b; short b;
char a; int8 a;
char c; int8 c;
}; };
// cache for storing asian abc widths (since it's too big too just store them all) // cache for storing asian abc widths (since it's too big too just store them all)

View File

@ -523,10 +523,10 @@ def configure(conf):
if conf.env.DEST_CPU in ['x86', 'x86_64']: if conf.env.DEST_CPU in ['x86', 'x86_64']:
flags += ['-mfpmath=sse'] flags += ['-mfpmath=sse']
elif conf.env.DEST_CPU in ['arm', 'aarch64']: elif conf.env.DEST_CPU in ['arm', 'aarch64', 'thumb' ]:
flags += ['-fsigned-char'] flags += ['-fsigned-char']
if conf.env.DEST_CPU == 'arm': if conf.env.DEST_CPU in [ 'arm', 'thumb' ]:
flags += ['-march=armv7-a', '-mfpu=neon-vfpv4'] flags += ['-march=armv7-a', '-mfpu=neon-vfpv4']
if conf.env.DEST_OS == 'freebsd': if conf.env.DEST_OS == 'freebsd':