diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-03-25 11:25:49 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-03-25 14:14:22 +0700 |
commit | 09221ebd18ec0074b25d593400f040ee460526aa (patch) | |
tree | e721b466f79090d78ddca667477ff33b56f083f2 /tools | |
parent | ff1ba5d2339a6e086b812acf96c47f78764b0095 (diff) |
Get exceptions working as they were before.
This no longer uses headers from libcxxabi and
in fact uses libcxxabi a bit less than before.
This no longer lets some new C++11 stuff such as
exception_ptr work as the support for that relies
upon libcxxabi code.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 7b667782..7514171c 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -393,7 +393,6 @@ if USE_EMSDK: '-Xclang', '-isystem' + path_from_root('system', 'include', 'emscripten'), '-Xclang', '-isystem' + path_from_root('system', 'include', 'bsd'), # posix stuff '-Xclang', '-isystem' + path_from_root('system', 'include', 'libc'), - '-Xclang', '-isystem' + path_from_root('system', 'lib', 'libcxxabi', 'include'), '-Xclang', '-isystem' + path_from_root('system', 'include', 'gfx'), '-Xclang', '-isystem' + path_from_root('system', 'include', 'net'), '-Xclang', '-isystem' + path_from_root('system', 'include', 'SDL'), |