aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-23always include memcpyAlon Zakai
2012-01-23fix test_typeinfoAlon Zakai
2012-01-23simplify llvm opt picking code, and allow up to level 3Alon Zakai
2012-01-23enable unsafe llvm opts in emccAlon Zakai
2012-01-21do not generate annotations when disassembling bitcodeAlon Zakai
2012-01-21test fixesAlon Zakai
2012-01-21skip tests that optimize bitcode, then pass to emcc which includes libcxx, ↵Alon Zakai
because pre-optimization can confuse the library includer
2012-01-21EMCC_DEBUG info for library inclusionAlon Zakai
2012-01-21test fixes, and fail on trying to use q1 with libcxxAlon Zakai
2012-01-21modify llvm opt choices in test runner build, so it uses test case code ↵Alon Zakai
modifications that can affect llvm opts
2012-01-21disable pruning of emcc -s opts from test runner - it's too buggyAlon Zakai
2012-01-21force emcc usage in s_* tests that need auto-inclusion of libcxx or dlmallocAlon Zakai
2012-01-21remove --optimize and --malloc from emscripten.py, since they are obsoleted ↵Alon Zakai
by emcc options
2012-01-20fix bug with Settings.default values not including -O, so comparisons were ↵Alon Zakai
wrong in some cases
2012-01-20fix bug with missing keys in Settings.defaultsAlon Zakai
2012-01-20remove dead function eliminator, which is no longer neededAlon Zakai
2012-01-20Merge branch 'master' into libcxxAlon Zakai
2012-01-20do not add unneeded -s 'es in test runnerAlon Zakai
2012-01-20wipe the emscripten cache in benchmarks tooAlon Zakai
2012-01-20turn on all CORRECT options for libcxx, just to be safe for nowAlon Zakai
2012-01-20fix bug with atomic ops not marked as having side effects, so we eliminated ↵Alon Zakai
them by mistake
2012-01-20autodebugger indender toolAlon Zakai
2012-01-20Merge pull request #178 from ehsan/babystepAlon Zakai
Initial WebGL support
2012-01-20Unify the 2D and WebGL contextsEhsan Akhgari
2012-01-20Merge pull request #179 from ehsan/make_runner_executable2Alon Zakai
Make runner executable
2012-01-20Add myself to the Authors fileEhsan Akhgari
2012-01-20Make the test runner script executableEhsan Akhgari
2012-01-20Implement a few OpenGL functions for the baby-step demoEhsan Akhgari
2012-01-20Load the GL libraryEhsan Akhgari
2012-01-20Enable SDL to create a 2D or WebGL context depending on what the caller wantsEhsan Akhgari
2012-01-20Add glext.hEhsan Akhgari
2012-01-19make the autodebugger also note when we enter functionsAlon Zakai
2012-01-19add LINKABLE in all dlfcn testsAlon Zakai
2012-01-19fix test runner bug with not having a current directoryAlon Zakai
2012-01-19fix test_emcc_cachingAlon Zakai
2012-01-19emcc commentAlon Zakai
2012-01-19remove std::terminate from libc++ symbols; it isn't enough of a reason to ↵Alon Zakai
include all of libc++ (if you need it, you also need set_terminate etc.)
2012-01-19clean up libcxx testAlon Zakai
2012-01-19js optimizer commentAlon Zakai
2012-01-18always include dlmalloc if including libcxx, since libcxx uses new internallyAlon Zakai
2012-01-18fix test_iostream codeAlon Zakai
2012-01-18move libc++ new into dlmalloc in terms of emcc library autolinkingAlon Zakai
2012-01-18move dlmalloc to system/libAlon Zakai
2012-01-18LINKABLE options, disabling dead code elimination for shared libraries and ↵Alon Zakai
main files that have things that shared libraries will access through an extern
2012-01-18fix bug with doing dead code elimination even with LEAVE_INPUTS_RAWAlon Zakai
2012-01-18metadata parsing bugfixAlon Zakai
2012-01-18Merge branch 'master' into libcxxAlon Zakai
2012-01-18add return value in munmapAlon Zakai
2012-01-18add test for dead code elimination, on libcxxAlon Zakai
2012-01-18mman.h header fixAlon Zakai