aboutsummaryrefslogtreecommitdiff
path: root/src/settings.js
AgeCommit message (Collapse)Author
2014-02-25Introduce the asmjs-unknown-emscripten target triple.Dan Gohman
2014-02-21reflect that asm is on by default in fastcomp, even in -O0, in the settingsAlon Zakai
2014-02-16RETAIN_COMPILER_SETTINGS, Runtime.getCompilerSetting and ↵Alon Zakai
emscripten_get_compiler_setting - an optional way to look up compiler flags at runtime
2014-02-10NO_EXIT_RUNTIME option, to set Module.noExitRuntime during compilationAlon Zakai
2014-02-05optimize out fround calls on clients that do not support froundAlon Zakai
2014-02-04disable WARN_UNALIGNED by defaultAlon Zakai
2014-02-04WARN_UNALIGNED option for fastcompAlon Zakai
2014-02-02support EXCEPTION_CATCHING_WHITELIST in fastcompAlon Zakai
2014-01-07update other.test_simd test for llvm 3.3 and 3.4Alon Zakai
2014-01-07make aggressiveVariableElimination usable through a settingAlon Zakai
2013-11-28Document GL_FFP_ONLY setting in src/settings.js.Jukka Jylänki
2013-11-21add some support for le32=2 mode, where varargs is just 4-byte alignedAlon Zakai
2013-11-13warn on missing symbols by default; fixes #1794Alon Zakai
2013-11-12make DEAD_FUNCTIONS work on js library functions tooAlon Zakai
2013-11-08Merge branch 'incoming' into f32Alon Zakai
Conflicts: src/parseTools.js src/preamble.js
2013-11-05support ASM_JS=2 not just in test runner, and remove some unneeded uses in ↵Alon Zakai
test suite
2013-10-29add test for precise float32 support, allow 3 modes of precise float32 ↵Alon Zakai
support, and rename option to PRECISE_F32 to be consistent with other precision options
2013-10-25move to FROUND option for Math.froundAlon Zakai
2013-10-03remove unneeded EMIT_GENERATED_FUNCTIONSAlon Zakai
2013-10-02if not running js opts, ensure a . in asmEnsureFloat immediatelyAlon Zakai
2013-10-02COMPILER_FASTPATHS optionAlon Zakai
2013-10-02comment on FUNCTION_POINTER_ALIGNMENTAlon Zakai
2013-10-02make function pointer aliasing configurableAlon Zakai
2013-10-02Add -s CASE_INSENSITIVE_FS=1 linker option to allow VFS to lookup files in ↵Jukka Jylänki
case-insensitive mode.
2013-09-30Merge branch 'incoming' of github.com:ngld/emscripten into incoming1.6.4Alon Zakai
Conflicts: AUTHORS src/library_sdl.js tools/shared.py
2013-09-27intertyper fast paths setup and proof of conceptAlon Zakai
2013-09-25Fix some comments and bump EMSCRIPTEN_VERSIONngld
2013-09-24Add more validation to the GL layer when GL_ASSERTIONS is enabled. This ↵Jukka Jylänki
catches and reports situations where user code passes nonexisting or deleted GL objects to texture/program/shader/framebuffer/renderbuffer functions, and yells out explicitly that the user code is not behaving properly.
2013-09-17Updated library_sdl.jsngld
2013-09-13RELOOPER_BUFFER_SIZE to change the relooper buffer size easily1.5.8Alon Zakai
2013-09-13Update libc headers to use musl headers.Bruce Mitchener
2013-09-08initial setup for proxying: add option and generate separate html and jsAlon Zakai
2013-09-03refactor dlfcn support into DLFCNAlon Zakai
2013-09-03do not require LINKABLE in DLOPEN_SUPPORTAlon Zakai
2013-09-03commentAlon Zakai
2013-08-30Merge pull request #1557 from inolen/sockfsAlon Zakai
getaddrinfo, freeaddrinfo, getnameinfo support and sockfs
2013-08-29Update STD*_FILENO constants in settings.js to match unistd.hRanger Harke
They are 1,2,3 in unistd.h (correct) but were 0,1,2 in settings.js, so calling `cDefine('STDOUT_FILENO')` (for example) would return the incorrect value. This addresses issue #1570, but not #1408.
2013-08-29 - created SOCKFSAnthony Pesch
- added support for node-based listen servers - updated tests to also test against compiled listen servers
2013-08-29 - added raw addr / hostname lookup supportAnthony Pesch
- added getaddrinfo, freeaddrinfo, getnameinfo and gai_strerror stub - added tests for getaddrinfo and getnameinfo - consolidated test_gethostbyname and test_sockets_gethostbyname
2013-08-25outlining docsAlon Zakai
2013-08-25outlining value suggestionAlon Zakai
2013-08-24settings.js docsAlon Zakai
2013-08-24more docs for outliningAlon Zakai
2013-08-19re-enabled non-asm.js shared lib supportAnthony Pesch
2013-08-15make legacy gl emulation an opt-in option, LEGACY_GL_EMULATIONAlon Zakai
2013-08-11experimental toFloat32 optionAlon Zakai
2013-08-10Remove some errno settings.Bruce Mitchener
This is a follow up to the previous commit that removed them from src/library.js.
2013-08-09Use cDefine to get numerical values for errors.Bruce Mitchener
2013-08-08fix AF_INET6 value in settings.jsAlon Zakai
2013-08-07Modify NSIG, SIGRTMIN and SIGRTMAX of src/settings.jsYu Kobayashi