summaryrefslogtreecommitdiff
path: root/emcc
AgeCommit message (Collapse)Author
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
2013-03-25Build libcxx and libcxxabi with C++11.Bruce Mitchener
2013-03-25Clean up lists of files, building libcxx / libcxxabi.Bruce Mitchener
2013-03-22require -O2 in asm, for nowAlon Zakai
2013-03-21fix handling of EMCC_LEAVE_INPUTS_RAWAlon Zakai
2013-03-18check for utf and avoid the overhead if not necessary; remove UTF_STRING_SUPPORTAlon Zakai
2013-03-15mark UTF_STRING_SUPPORT as an unsafe but useful opt, in -O3Alon Zakai
2013-03-12support -s KEY=@PATH in emcc, for very large settings valuesAlon Zakai
2013-03-10--save-bc optionAlon Zakai
2013-03-10error on pgo with asmAlon Zakai
2013-03-10larger pgo test, with asm measurementsAlon Zakai
2013-03-09Merge branch 'asm_minifier' into incomingAlon Zakai
2013-03-09make sure to remove trivial whitespaceAlon Zakai
2013-03-09minify by default in -O2+, unless -gAlon Zakai
2013-03-08make sure we use a C compiler to build libc. fixes #937, #938Alon Zakai
2013-03-08run registerize pass lastAlon Zakai
2013-03-06Move strtod, strtold, strtof, strtod_l, strtold_l, atof from JS side to libc ↵1.2.9Xuejie "Rafael" Xiao
side, this can fix double precision bug in original strtod implementation.
2013-03-06remove trivial whitespaceAlon Zakai
2013-03-06Merge pull request #848 from manuels/incomingAlon Zakai
Add getopt and getopt_long (libc) support
2013-03-05make -Os like -O2 but also disable inliningAlon Zakai
2013-03-05Add support for getopt/getopt_longmanuels
2013-03-04emscripten_jcache_printfAlon Zakai
2013-03-03remove ASM_JS warning and add check for exception catching being off in it, ↵Alon Zakai
the last remaining issue for it
2013-02-28inline by default, now that lto is off by defaultAlon Zakai
2013-02-28disable llvm lto except for -O3, due to issues we have been seeingAlon Zakai
2013-02-27experimental EMCC_OPTIMIZE_NORMALLY optionAlon Zakai
2013-02-27jcache docsAlon Zakai
2013-02-26fix DEBUG ? 2 checksAlon Zakai
2013-02-26add cache debuggingVladimir Vukicevic
2013-02-26clean up response file codeAlon Zakai
2013-02-26Add basic response file parsing to emccVladimir Vukicevic
2013-02-25EMCC_FORCE_STDLIBS optionAlon Zakai
2013-02-25only do symbol checks for libcxx etc. if not forcing them anyhowAlon Zakai
2013-02-21Merge pull request #859 from waywardmonkeys/cmdline-fixesAlon Zakai
Cmdline fixes
2013-02-21emcc: Improve handling of -O flag.Bruce Mitchener
Previously, while gcc supports -O, emcc would fail. It now interprets -O as -O2, just as gcc does. Additionally, it was only looking at the first character after -O, so nonsense like -O34 would be accepted (and treated as -O3).
2013-02-20do not wipe out llvm debug info if linespecific corrections are doneAlon Zakai
2013-02-20remove bad_cast/typeinfo.cpp from libcxx, no longer needed since it is in ↵Alon Zakai
libcxxabi
2013-02-20build base type_info class with libcxxabi, fixes #862Alon Zakai