diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-05-01 19:55:09 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-05-01 19:55:09 -0700 |
commit | cc6763ec4ebab535ade9edeb932c9d90c070ac4e (patch) | |
tree | b32010347fda33e45cde6098555c71f4f9166703 /tools | |
parent | f54612a210af5c85071d54d892d533656a940c7c (diff) |
undef __linux__, fixes SDL endianness detection
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 010351ee..b4dc71ca 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -199,7 +199,7 @@ if USE_EMSDK: '-Xclang', '-isystem' + path_from_root('system', 'include', 'net'), '-Xclang', '-isystem' + path_from_root('system', 'include', 'SDL'), ] + [ - '-U__APPLE__' + '-U__APPLE__', '-U__linux__' ] COMPILER_OPTS += EMSDK_OPTS else: |