aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-19Updated scripts to call python2 directly rather than relying on python ↵Alan Kligman
symlink pointing to the right place. See PEP394 for details on why this should be OK.
2012-12-19remove --remove-duplicatesAlon Zakai
2012-12-19tolerate people issuing link commands with duplicates in themAlon Zakai
2012-12-19Merge pull request #746 from xxuejie/function-name-filterAlon Zakai
Add function name filter for LABEL_DEBUG
2012-12-13chunk very large array literals in global constants, to avoid 'array ↵Alon Zakai
initializer too large errors' closes #194
2012-12-12do not try to eliminate phi variables, which are unsafe to be removed and ↵Alon Zakai
the llvm optimizer will remove anyhow if unused
2012-12-12make Building.is_* tests emit errors to stderrAlon Zakai
2012-12-12clamp glColor floats to [0,1]Alon Zakai
2012-12-12keep at least 'node' as the guess for nodeAlon Zakai
2012-12-10warni when ignoring libsAlon Zakai
2012-12-10Remove regexp case since it is slow and rarely usedXuejie Xiao
2012-12-10ignore llvm.module metadataAlon Zakai
2012-12-10remove unneeded debug stuffAlon Zakai
2012-12-10add some link debug stuffAlon Zakai
2012-12-08fix testcase for longjmp4 to avoid undefined behavior, enable in all ↵Alon Zakai
optimization modes; closes #747
2012-12-08better fix for the exception testcase in #747 - set the current exception ↵Alon Zakai
when we are resuming after an end-catch which wiped it out, but not otherwise
2012-12-08properly use identifier given to resume instruction, avoids issues with ↵Alon Zakai
cxa_catch cleaning it up; fixes test_multiexception, the exception-handling part of #747
2012-12-07disable test_longjmp4 in optimized builds - it fails in native clang -O2 as ↵Alon Zakai
well, possibly undefined behavior
2012-12-07rewrite setjmp code to identify, uniquely, each setjmp and match it to a ↵Alon Zakai
longjmp. add testcase for #747, works in unoptimized builds
2012-12-07add test_multiexception for #747Alon Zakai
2012-12-07clear setjmped when handling a longjmp, so we can proceed to longjmp later ↵Alon Zakai
correctly; fixes #747
2012-12-07Add function name filter for LABEL_DEBUGXuejie Xiao
2012-12-07properly implement uitofp/sitofp using our existing code for that; fixes #745Alon Zakai
2012-12-07add parts of system bitcode libraries when necessary, and refactor library ↵Alon Zakai
inclusion decision code
2012-12-04Ignore generated files src/relooper.js[.raw.js] for gitTobias Weibel
2012-12-04Merge pull request #735 from eclecticdave/emcc_so_fixAlon Zakai
Fixes to emcc to make autoconf enable shared objs
2012-12-04recursively traverse .a files until we have all we needAlon Zakai
2012-12-04only add in .o inside .a that are neededAlon Zakai
2012-12-03do not apply -l if not generating an executable or a libraryAlon Zakai
2012-12-03ignore argument after -I -L for purposes of input detection in emccAlon Zakai
2012-11-30Fixes to emcc to make autoconf enable shared objsDavid Claughton
When using emcc as a linker, autoconf disables shared object support. This is because it expects the text returned by the -v and --help options to match certain things that GNU ld prints. Specifically it expects the output of emcc -v to include the word 'GNU' and the output of emcc -v to match the regexp ': supported targets.* elf' Modified the messages returned by emcc for these options to make autoconf happy.
2012-11-30Merge pull request #734 from dinibu/incomingAlon Zakai
Fixed embind for non-void non-const class methods (with test). Fixes issue #605.
2012-11-30Fixed embind for non-void non-const class methods (with test).Dominic Wong
2012-11-28fix sprintfAlon Zakai
2012-11-28Merge pull request #731 from juj/print_benchmark_errorsAlon Zakai
Print benchmark errors
2012-11-28Use 'return 0;' instead of 'return 1;' in all native code in tests/runner.py ↵Jukka Jylänki
to denote exit with a success.
2012-11-28Improve test runner build_native and run_native functions to output detailer ↵Jukka Jylänki
error report when things go wrong.
2012-11-27disable tests not working without named globalsAlon Zakai
2012-11-27avoid overhead in named globals buildsAlon Zakai
2012-11-27do not index globals referred to by name in libraryAlon Zakai
2012-11-27llvm global ctors is not indexableAlon Zakai
2012-11-27update test_cases/gepoverflowAlon Zakai
2012-11-27fix global indexing bugsAlon Zakai
2012-11-27fix alias precheckAlon Zakai
2012-11-27do global indexing up frontAlon Zakai
2012-11-27fix vtable null termination with indexed globalsAlon Zakai
2012-11-27do not globalIndex externalsAlon Zakai
2012-11-27correct indexed globals in structured constantsAlon Zakai
2012-11-27external globals and not indexableAlon Zakai
2012-11-27fix assignment to indexed globalAlon Zakai