aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-17Remove flags for disabling ms-compatibility.Bruce Mitchener
With the use of -target rather than -triple, these are no longer needed.
2013-04-17Use -target rather than -triple with clang.Bruce Mitchener
Apparently -target replaced -triple in the past. Using -target also makes the behavior of clang match the target rather than the host platform.
2013-04-16Merge pull request #1044 from imvu/embind_updateAlon Zakai
Embind update
2013-04-16Merge pull request #1038 from juj/fix_test_asm_pgo_windowsAlon Zakai
Fix test_asm_pgo on Windows.
2013-04-16Merge pull request #1054 from azmeuk/packagerAlon Zakai
File Packager improvements
2013-04-16Fix newline typo in AUTHORS.Jukka Jylänki
2013-04-16Revert "Fix cxa_demangle compile errors". By feedback from azakai, we want ↵Jukka Jylänki
to keep our libcxxabi clean from custom changes w.r.t. upsstream libcxxabi. This reverts commit 848c186df3a8f1eff6e7b1af0b08df25aefae0e3.
2013-04-16* Added a warning to file_packager when an input file does not exist.Éloi Rivard
2013-04-15default memory initializer to off, and add testing coverageAlon Zakai
2013-04-15* Added --no-force argument.Éloi Rivard
2013-04-14update test_unistd_miscAlon Zakai
2013-04-14use compiled i64 div and remAlon Zakai
2013-04-14use compiled compiler-rt code for i64 multiplicationAlon Zakai
2013-04-14add option to move elements from post into before the asm blockAlon Zakai
2013-04-14asmify ctlz/cttzAlon Zakai
2013-04-14add more i64Subtract testingAlon Zakai
2013-04-14add i64 testingAlon Zakai
2013-04-14add handwritten asm i64SubtractAlon Zakai
2013-04-14add compiler-rt files for 64-bit mathAlon Zakai
2013-04-14remove i64Math_addAlon Zakai
2013-04-13remove unneeded i64Math.add import to asmAlon Zakai
2013-04-13fix overflow detection in i64 uadd, and add testcaseAlon Zakai
2013-04-13find structural returns of >64 bitsAlon Zakai
2013-04-13disable memory init file in benchmarksAlon Zakai
2013-04-13fix legalization of nonexistent call return valuesAlon Zakai
2013-04-13refactor option to use full js in configure, add EMCONFIGURE_JS optionAlon Zakai
2013-04-13* Little improvements of file_packager.pyÉloi Rivard
2013-04-12handle inline struct definitions (assuming zeroinit) in illegal insertvalue, ↵Alon Zakai
and add testcase based on gmp.js
2013-04-12coerce arguments to cxa_find_matching_catch; enable remaining asm.js ↵Alon Zakai
exceptions tests
2013-04-12enable two more exceptions tests in asm.jsAlon Zakai
2013-04-12fix __THREW__ initialization in asm.js invokes; test_exceptions now enabled ↵Alon Zakai
and working in asm.js
2013-04-12asm-coerce arguments to invoke_*Alon Zakai
2013-04-12move exception resuming into a dedicated functionAlon Zakai
2013-04-12fix forced calls through invoke_*Alon Zakai
2013-04-12avoid emitting non-asm code for cxa_find_matching_catchAlon Zakai
2013-04-12Update AUTHORS to refer to all people who contributed to embind.Jukka Jylänki
2013-04-12Revert "Bring back EMSCRIPTEN_KEEPALIVE" - instead directly use the ↵Jukka Jylänki
__attribute__((used)) macro in embind/bind.cpp. This reverts commit cbf636a88bcfcabf084331fc4d8a445cacb158f9.
2013-04-12Allow instantiation of subclass wrappers with smart pointers.Chad Austin
2013-04-12Stop using cxa_demangle in embind.Bruce Mitchener
With an updated libcxx, we no longer have libcxxabi in the include path, so we can't have the demangling code in the build.
2013-04-12Use _embind_repr instead of IMVU.repr in embind.js, since IMVU.repr is not ↵Jukka Jylanki
available in kripken/emscripten.
2013-04-12support overloaded index accessChad Austin
2013-04-12Add support for index access to value_tuple and value_structChad Austin
2013-04-12More code duplication cleanup on embindJukka Jylanki
2013-04-12Remove code duplication on embindJukka Jylanki
2013-04-12Cleaned up some code repetition in embindJukka Jylanki
2013-04-12Add support for overloading class member functions and class static ↵Jukka Jylanki
functions based on function argument count.
2013-04-12refactoringChad Austin
2013-04-12Allow value_tuple and value_struct to be registered as global constants. ↵Chad Austin
This involved reworking how value_struct and value_tuple are registered.
2013-04-12Add support for global constants.Chad Austin
2013-04-12Add support for registering overloads of free functions based on argument count.Jukka Jylanki