diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-09-30 17:16:46 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-09-30 17:16:46 -0700 |
commit | f717fa82cc598d403eba5ff1b03246b69cd9dca0 (patch) | |
tree | 63d5fba3700a034c5dcd578e6aecf8eaf7efa7cf /src | |
parent | 5afeeb49b5f2d1155b8d974767159ba346cec3e2 (diff) |
fix other.test_static_link
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index abee70c4..02981a80 100644 --- a/src/library.js +++ b/src/library.js @@ -8705,7 +8705,7 @@ function autoAddDeps(object, name) { } // Add aborting stubs for various libc stuff needed by libc++ -['pthread_cond_signal', 'pthread_equal', 'wcstol', 'wcstoll', 'wcstoul', 'wcstoull', 'wcstof', 'wcstod', 'wcstold', 'pthread_join', 'pthread_detach', 'catgets', 'catopen', 'catclose'].forEach(function(aborter) { +['pthread_cond_signal', 'pthread_equal', 'wcstol', 'wcstoll', 'wcstoul', 'wcstoull', 'wcstof', 'wcstod', 'wcstold', 'pthread_join', 'pthread_detach', 'catgets', 'catopen', 'catclose', 'fputwc', '__lockfile', '__unlockfile'].forEach(function(aborter) { LibraryManager.library[aborter] = function() { throw 'TODO: ' + aborter }; }); |