mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-07-15 22:09:58 +00:00
Merge 431b4da467 into ed8209cc35
This commit is contained in:
commit
c3de6f3ba3
@ -112,8 +112,8 @@ private:
|
||||
struct abc_t
|
||||
{
|
||||
short b;
|
||||
char a;
|
||||
char c;
|
||||
int8 a;
|
||||
int8 c;
|
||||
};
|
||||
|
||||
// cache for storing asian abc widths (since it's too big too just store them all)
|
||||
|
||||
4
wscript
4
wscript
@ -523,10 +523,10 @@ def configure(conf):
|
||||
|
||||
if conf.env.DEST_CPU in ['x86', 'x86_64']:
|
||||
flags += ['-mfpmath=sse']
|
||||
elif conf.env.DEST_CPU in ['arm', 'aarch64']:
|
||||
elif conf.env.DEST_CPU in ['arm', 'aarch64', 'thumb' ]:
|
||||
flags += ['-fsigned-char']
|
||||
|
||||
if conf.env.DEST_CPU == 'arm':
|
||||
if conf.env.DEST_CPU in [ 'arm', 'thumb' ]:
|
||||
flags += ['-march=armv7-a', '-mfpu=neon-vfpv4']
|
||||
|
||||
if conf.env.DEST_OS == 'freebsd':
|
||||
|
||||
Loading…
Reference in New Issue
Block a user