aboutsummaryrefslogtreecommitdiff
path: root/emcc
AgeCommit message (Collapse)Author
2013-10-14emcc comments on -Ox optionsAlon Zakai
2013-10-14Merge pull request #1681 from marcosscriven/incomingAlon Zakai
Fix debug format to allow specific LLVM opts rather than just an integer level
2013-10-09use aliasing function pointers in -O1Alon Zakai
2013-10-09run relooper in -O1, and do not run js opts thereAlon Zakai
2013-10-08automatically adjust asm heap sizeAlon Zakai
2013-10-06do not run simplifyExpressions in -O1Alon Zakai
2013-10-03fix js_opts definitionAlon Zakai
2013-10-02if not running js opts, ensure a . in asmEnsureFloat immediatelyAlon Zakai
2013-10-02run 'last' js optimization phase if asm.js, even if nothing else to runAlon Zakai
2013-10-02error on linkable modules without asmAlon Zakai
2013-10-02link in files in autodebuggerAlon Zakai
2013-09-29Debug statement fails when using specific LLVM opts rather than an integer levelMarcos Scriven
2013-09-26Add iconv from musl.Bruce Mitchener
2013-09-25Merge pull request #1670 from waywardmonkeys/add-locale-stuffAlon Zakai
Add locale stuff
2013-09-26Add wprintf, swprintf, vswprintf, vfwprintf, etc.Bruce Mitchener
2013-09-26Add a lot of locale code.Bruce Mitchener
2013-09-25Merge pull request #1653 from juj/fix_ar_handlingAlon Zakai
Fix ar handling
2013-09-25Do not get confused by Apple GCC dylib special '-compatibility_version' and ↵Jukka Jylänki
'-current_version' directives when scanning for input files. Fixes test_the_bullet on OSX after the previous commit.
2013-09-23comment about LTO stabilityAlon Zakai
2013-09-23Fix emcc to properly treat input filenames with Unix-style version ↵Jukka Jylänki
information at the end, e.g. 'libz.so.1.2.8'. Do not assume in the source -> LLVM bitcode compilation pass that all untested file suffixes would be assembly files. Related to #1648.
2013-09-23Make input file parsing in 'emcc' tool stricter. Don't silently fail if a ↵Jukka Jylänki
file is missing or is a bitcode file if an archive file was expected, but issue an error and abort. Related to #1648.
2013-09-13refactor memory initializer code to use run dependenciesfailureAlon Zakai
2013-09-13Merge pull request #1615 from waywardmonkeys/fix-preprocessor-usageAlon Zakai
Fix using emcc -E.
2013-09-13Fix using emcc -E.Bruce Mitchener
We don't want to pass this extra flag to emcc as it breaks when doing EMCONFIGURE_JS=1 emconfigure ./configure ...
2013-09-13Typo fix.Bruce Mitchener
2013-09-10add space to emcc debug outputAlon Zakai
2013-09-08initial setup for proxying: add option and generate separate html and jsAlon Zakai
2013-09-04dlopen+exceptions+asm is not supported yetAlon Zakai
2013-09-03handle the case of EXPORTED_FUNCTIONS=@Alon Zakai
2013-09-03always keep malloc and free alive and exported, for internal use and other ↵Alon Zakai
modules
2013-09-03support -E in emccAlon Zakai
2013-09-03remove unneeded settings from DLOPEN_SUPPORTAlon Zakai
2013-09-03do not require LINKABLE in DLOPEN_SUPPORTAlon Zakai
2013-09-03use addFunction in dlsym, and define F_BASE in side modules so they can run ↵Alon Zakai
as shared libs
2013-09-03disable ALIASING_FUNCTION_POINTERS for DLOPEN_SUPPORTAlon Zakai
2013-08-24emit memory init files when closure is run, fixes #1547Alon Zakai
2013-08-21only outline in asm.js mode, where it is supportedAlon Zakai
2013-08-14disable optimizeShifts; fixes #1518Alon Zakai
2013-08-14update emcc commentAlon Zakai
2013-08-09--js-opts option to turn off js optimizerAlon Zakai
2013-08-08Merge pull request #1473 from juj/wno-warn-absolute-pathsAlon Zakai
Wno warn absolute paths
2013-08-08Document -Wno-warn-absolute-paths for emcc --help.Jukka Jylänki
2013-08-07Add fcvt, ecvt, gcvt functions.Bruce Mitchener
2013-08-07Add -Wno-warn-absolute-paths cmdline option to allow hiding the absolute ↵Jukka Jylänki
-I/-L path warning for codebases that understand they are crosscompiling and aren't referring to native system headers.
2013-08-02properly deprecate all arguments to --minify except for 0Alon Zakai
2013-08-02add default extra arguments to beginning of commandline arguments, so that ↵Alon Zakai
users can override them (not recommended though)
2013-08-01only emit -nostdinc++ when calling clang to build a file ending in a ↵Alon Zakai
cpp-style suffix
2013-07-31support for stb-imageAlon Zakai
2013-07-30disable asm in embind mode, and add a test for what embind cannot do in asm ↵Alon Zakai
mode yet; issue #1447
2013-07-24link to file packaging docsAlon Zakai