@@ -211,7 +211,7 @@ See docs/process.md for more on how version tagging works.
211211 dependency on it. It can also be explicitly included using
212212 ` -sEXPORTED_RUNTIME_METHODS=wasmTable ` .
213213- libunwind updated to LLVM 16.0.6. (#20088 )
214- - The ` --minify=0 ` commnad line flag will now preserve comments as well as
214+ - The ` --minify=0 ` command line flag will now preserve comments as well as
215215 whitespace. This means the resulting output can then be run though closure
216216 compiler or some other tool that gives comments semantic meaning. (#20121 )
217217- ` -sSTRICT ` now implies ` -sINCOMING_MODULE_API=[] ` which is generally good
@@ -876,7 +876,7 @@ See docs/process.md for more on how version tagging works.
8768763.1.2 - 01/20/2022
877877------------------
878878- A new setting, ` POLYFILL ` , was added which is on by default but can be disabled
879- (via ` -sNO_POLYFILL ` ) to prevent emscripten from outputing needed polyfills.
879+ (via ` -sNO_POLYFILL ` ) to prevent emscripten from outputting needed polyfills.
880880 For default browser targets, no polyfills are needed so this option only has
881881 meaning when targeting older browsers.
882882- ` EVAL_CTORS ` has been rewritten and improved. The main differences from before
@@ -1188,7 +1188,7 @@ See docs/process.md for more on how version tagging works.
11881188- When building with ` -s MAIN_MODULE ` emscripten will now error on undefined
11891189 symbol by default. This matches the behvious of clang/gcc/msvc. This
11901190 requires that your side modules be present on the command line. If you do not
1191- specify your side modules on the command line (either direcly or via
1191+ specify your side modules on the command line (either directly or via
11921192 ` RUNTIME_LINKED_LIBS ` ) you may need to add ` -s WARN_ON_UNDEFINED_SYMBOLS=0 ` to
11931193 avoid errors about symbol that are missing at link time (but present in your
11941194 side modules provided at runtime). We hope that this case is not common and
@@ -1293,7 +1293,7 @@ See docs/process.md for more on how version tagging works.
12931293
129412942.0.15: 03/05/2021
12951295------------------
1296- - Calls to ` newlocale ` (and ` new std::locale ` in C++) with arbirary names will
1296+ - Calls to ` newlocale ` (and ` new std::locale ` in C++) with arbitrary names will
12971297 now succeed. This is the behaviour of musl libc which emscripten had
12981298 previously inadvertently disabled.
12991299- System libraries are now compiled with debug info (` -g ` ). This doesn't
@@ -1310,7 +1310,7 @@ See docs/process.md for more on how version tagging works.
131013102.0.14: 02/14/2021
13111311------------------
13121312- Add new setting: ` REVERSE_DEPS ` . This can be used to control how emscripten
1313- decides which reverse dependecies to include. See ` settings.js ` for more
1313+ decides which reverse dependencies to include. See ` settings.js ` for more
13141314 information. The default setting ('auto') is the traditional way emscripten
13151315 has worked in the past so there should be no change unless this options is
13161316 actually used. This option partially replaces the ` EMCC_ONLY_FORCED_STDLIBS `
@@ -1466,7 +1466,7 @@ See docs/process.md for more on how version tagging works.
14661466- Add new ` COMPILER_WRAPPER ` settings (with corresponding ` EM_COMPILER_WRAPPER `
14671467 environment variable. This replaces the existing ` EMMAKEN_COMPILER `
14681468 environment variable which is deprecated, but still works for the time being.
1469- The main differences is that ` EM_COMPILER_WRAPPER ` only wrapps the configured
1469+ The main differences is that ` EM_COMPILER_WRAPPER ` only wraps the configured
14701470 version of clang rather than replacing it.
14711471- ASAN_SHADOW_SIZE is deprecated. When using AddressSanitizer, the correct
14721472 amount of shadow memory will now be calculated automatically.
@@ -1478,7 +1478,7 @@ See docs/process.md for more on how version tagging works.
14781478- Fix a rare pthreads main thread deadlock (that worsened in 2.0.2, but existed
14791479 before). (#12318 )
14801480- The WebAssembly table is now created and exported by the generated wasm
1481- module rather then constructed by the JS glue code. This is an implemention
1481+ module rather then constructed by the JS glue code. This is an implementation
14821482 detail that should not affect most users, but reduces code size. (#12296 )
14831483- Add ` getentropy ` in ` sys/random.h ` , and use that from libc++'s
14841484 ` random_device ` . This is more efficient, see #12240 .
@@ -1626,7 +1626,7 @@ See docs/process.md for more on how version tagging works.
16261626 ` EM_FOO ` this should be enough.
16271627- Running emscripten under python2 is now deprecated. It will show up as a
16281628 warning (which can be disabled with ` -Wno-deprecated ` ). Please update to
1629- python3 as we hope to remove support completely in the next releaase .
1629+ python3 as we hope to remove support completely in the next release .
16301630
163116311.39.20: 07/20/2020
16321632-------------------
@@ -2818,7 +2818,7 @@ v1.36.10: 9/24/2016
28182818 - Improved support for --proxy-to-worker build mode.
28192819 - Improved GLES3 support for glGet() features that WebGL2 does not have. (#4514 )
28202820 - Added support for implementation defined glReadPixels() format.
2821- - Improved WebGL 2 support with closure compilter . (#4554 )
2821+ - Improved WebGL 2 support with closure compiler . (#4554 )
28222822 - Implemented support for nanosleep() when building in pthreads mode (#4578 )
28232823 - Added support for llvm_ceil_f64 and llvm_floor_f64 intrinsics.
28242824 - Full list of changes:
@@ -2852,7 +2852,7 @@ v1.36.8: 8/20/2016
28522852 options for wasm.
28532853 - Added new emprofile.py script which can be used to profile toolchain wide
28542854 performance. (#4491 )
2855- - Added new linker flag --output-eol, which specifices what kind of line
2855+ - Added new linker flag --output-eol, which specifies what kind of line
28562856 endings to generate to the output files. (#4492 )
28572857 - Fixed a Windows bug where aborting execution with Ctrl-C might hang
28582858 Emscripten to an infinite loop instead. (#4494 )
@@ -3743,7 +3743,7 @@ v1.30.2: 4/1/2015
37433743
37443744v1.30.1: 3/24/2015
37453745------------------
3746- - Upgraded LLVM+Clang from vrsion 3.5 to version 3.6.
3746+ - Upgraded LLVM+Clang from version 3.5 to version 3.6.
37473747 - Full list of changes:
37483748 - Emscripten: https://github.com/emscripten-core/emscripten/compare/1.30.0...1.30.1
37493749 - Emscripten-LLVM: https://github.com/emscripten-core/emscripten-fastcomp/compare/1.30.0...1.30.1
@@ -4488,7 +4488,7 @@ v1.21.4: 7/17/2014
44884488 runtime.
44894489 - Have runtime mkdir() function call normalize the path to be created before
44904490 creation.
4491- - Fixed an issue with omitting the third paramter in cwrap() call (#2511 ).
4491+ - Fixed an issue with omitting the third parameter in cwrap() call (#2511 ).
44924492 - Fixed an issue where mouse event handling would throw an exception if the
44934493 page did not contain a canvas object.
44944494 - Fixed a GL initialization problem when user has extended Array with custom
@@ -4514,7 +4514,7 @@ v1.21.3: 7/10/2014
45144514 - Added implementations for SDL function SDL_AudioQuit and SDL_VideoQuit.
45154515 - Fix an issue with the optimizeShifts optimization enabled in previous version.
45164516 - Fixed the -s RELOOPER command line parameter to work.
4517- - Fixed a bug where building the system libc migt result in a compiler deadlock
4517+ - Fixed a bug where building the system libc might result in a compiler deadlock
45184518 on Windows.
45194519 - Removed emcc from trying to link in .dll files as static libraries on
45204520 Windows.
@@ -5292,7 +5292,7 @@ v1.7.0: 10/23/2013
52925292 - Several compiler stability fixes.
52935293 - Adds a JavaScript implementation of cxa_demangle function for demangling call
52945294 stack traces at runtime for easier debugging.
5295- - GL context MSAA antialising is now DISABLED by default, to make the GL
5295+ - GL context MSAA antialiasing is now DISABLED by default, to make the GL
52965296 behavior consistent with desktop usage.
52975297 - Added support to SDL, GLUT and GLFW libraries to specify MSAA on/off at startup.
52985298 - Implemented glColor4ubv in GL emulation mode.
0 commit comments