aboutsummaryrefslogtreecommitdiff
path: root/emcc
AgeCommit message (Collapse)Author
2013-05-16enable aliasing function pointers by default in -O2Alon Zakai
2013-05-10add FORCE_ALIGNED_MEMORY=1 to -O3Alon Zakai
2013-05-06fix sdl inclusionAlon Zakai
2013-05-06auto-include malloc/free when SDL is used; fixes #1139Alon Zakai
2013-05-06fix memory initializer detectionAlon Zakai
2013-05-05update commentsAlon Zakai
2013-05-03adjust js pass logging level to debugAlon Zakai
2013-05-03update testsAlon Zakai
2013-05-03restore warning on no input files, to match gccAlon Zakai
2013-05-03fix some logging usesAlon Zakai
2013-05-03tweak some logging levelsAlon Zakai
2013-05-03Displays usage when no argument is passed.Éloi Rivard
2013-05-03* Added some colors to messages displayed from python files.Éloi Rivard
2013-05-01only recommend jcache with -gAlon Zakai
2013-05-01require -g with jcache, fixes test_jcacheAlon Zakai
2013-04-30add support for changing the llvm target using EMCC_LLVM_TARGET in the envAlon Zakai
2013-04-29error on undefined symbols in js configure-ingAlon Zakai
2013-04-29add target settingsAlon Zakai
2013-04-29[libcextra] Add wcwidth, wcswidth.Bruce Mitchener
2013-04-29[libcextra] wctrans and friends.Bruce Mitchener
2013-04-29[libcextra] add isw* classification functions.Bruce Mitchener
2013-04-25Merge branch 'idb-preload-cache' of github.com:modeswitch/emscripten into ↵Alon Zakai
modeswitch-idb-preload-cache
2013-04-25clean up meminit detectionAlon Zakai
2013-04-25Add --use-preload-cache option to emcc, which passes it through to ↵Alan Kligman
file_packager.
2013-04-23Clean up libc / libcxx build infrastructure.Bruce Mitchener
This creates a couple of additional methods to reduce copy/paste and make things a bit easier to follow.
2013-04-22Move wchar,mb stuff to libcextra.Bruce Mitchener
2013-04-22Add musl multibyte function implementations.Bruce Mitchener
2013-04-22Add musl wchar function implementations.Bruce Mitchener
2013-04-22Let libc.symbols use same symbol format as libcxx.Bruce Mitchener
This is just the output of 'llvm-nm -extern-only -defined-only'.
2013-04-19update testsAlon Zakai
2013-04-19disable asm.js when using embindAlon Zakai
2013-04-19enable ASM_JS=1 in -O1+, and start to update testingAlon Zakai
2013-04-17enable asm in -O1 and prepare to add testingAlon Zakai
2013-04-16Merge pull request #1038 from juj/fix_test_asm_pgo_windowsAlon Zakai
Fix test_asm_pgo on Windows.
2013-04-15default memory initializer to off, and add testing coverageAlon Zakai
2013-04-13refactor option to use full js in configure, add EMCONFIGURE_JS optionAlon Zakai
2013-04-11Remove the unwanted abstraction that callee is allowed to autodelete a ↵Jukka Jylänki
response file after consuming it. Instead, manually track and delete response files by the caller and clean them up.
2013-04-11Extend the use of response files to cover the case when emcc invokes ↵Jukka Jylänki
emscripten.py, so that Windows command line length limitations don't break the test_asm_pgo on Windows.
2013-04-10do not use memory init file without ta2, since we lay out memory in ta2 ↵Alon Zakai
format in binary files
2013-04-10emcc note about .mem filesAlon Zakai
2013-04-09restore memory initialization and testingAlon Zakai
2013-04-05disable memory init for nowAlon Zakai
2013-04-05work towards detecting chunked memory initAlon Zakai
2013-04-05do not copy mem file when already in all placesAlon Zakai
2013-04-05load memory initializer immediatelyAlon Zakai
2013-04-05refactor preRun additionsAlon Zakai
2013-04-05use a separate memory initialization fileAlon Zakai
2013-03-25remove symbol removing hack; export all malloc symbols as weak; add test for ↵1.3.5Alon Zakai
a case where symbol removing made us not merge llvm constructors properly
2013-03-25Get exceptions working as they were before.Bruce Mitchener
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.
2013-03-25Get things working with the new libcxx / libcxxabi.Bruce Mitchener