@@ -217,7 +217,7 @@ See docs/process.md for more on how version tagging works.
217
217
dependency on it. It can also be explicitly included using
218
218
` -sEXPORTED_RUNTIME_METHODS=wasmTable ` .
219
219
- libunwind updated to LLVM 16.0.6. (#20088 )
220
- - The ` --minify=0 ` commnad line flag will now preserve comments as well as
220
+ - The ` --minify=0 ` command line flag will now preserve comments as well as
221
221
whitespace. This means the resulting output can then be run though closure
222
222
compiler or some other tool that gives comments semantic meaning. (#20121 )
223
223
- ` -sSTRICT ` now implies ` -sINCOMING_MODULE_API=[] ` which is generally good
@@ -882,7 +882,7 @@ See docs/process.md for more on how version tagging works.
882
882
3.1.2 - 01/20/2022
883
883
------------------
884
884
- A new setting, ` POLYFILL ` , was added which is on by default but can be disabled
885
- (via ` -sNO_POLYFILL ` ) to prevent emscripten from outputing needed polyfills.
885
+ (via ` -sNO_POLYFILL ` ) to prevent emscripten from outputting needed polyfills.
886
886
For default browser targets, no polyfills are needed so this option only has
887
887
meaning when targeting older browsers.
888
888
- ` EVAL_CTORS ` has been rewritten and improved. The main differences from before
@@ -1194,7 +1194,7 @@ See docs/process.md for more on how version tagging works.
1194
1194
- When building with ` -s MAIN_MODULE ` emscripten will now error on undefined
1195
1195
symbol by default. This matches the behvious of clang/gcc/msvc. This
1196
1196
requires that your side modules be present on the command line. If you do not
1197
- specify your side modules on the command line (either direcly or via
1197
+ specify your side modules on the command line (either directly or via
1198
1198
` RUNTIME_LINKED_LIBS ` ) you may need to add ` -s WARN_ON_UNDEFINED_SYMBOLS=0 ` to
1199
1199
avoid errors about symbol that are missing at link time (but present in your
1200
1200
side modules provided at runtime). We hope that this case is not common and
@@ -1299,7 +1299,7 @@ See docs/process.md for more on how version tagging works.
1299
1299
1300
1300
2.0.15: 03/05/2021
1301
1301
------------------
1302
- - Calls to ` newlocale ` (and ` new std::locale ` in C++) with arbirary names will
1302
+ - Calls to ` newlocale ` (and ` new std::locale ` in C++) with arbitrary names will
1303
1303
now succeed. This is the behaviour of musl libc which emscripten had
1304
1304
previously inadvertently disabled.
1305
1305
- System libraries are now compiled with debug info (` -g ` ). This doesn't
@@ -1316,7 +1316,7 @@ See docs/process.md for more on how version tagging works.
1316
1316
2.0.14: 02/14/2021
1317
1317
------------------
1318
1318
- Add new setting: ` REVERSE_DEPS ` . This can be used to control how emscripten
1319
- decides which reverse dependecies to include. See ` settings.js ` for more
1319
+ decides which reverse dependencies to include. See ` settings.js ` for more
1320
1320
information. The default setting ('auto') is the traditional way emscripten
1321
1321
has worked in the past so there should be no change unless this options is
1322
1322
actually used. This option partially replaces the ` EMCC_ONLY_FORCED_STDLIBS `
@@ -1472,7 +1472,7 @@ See docs/process.md for more on how version tagging works.
1472
1472
- Add new ` COMPILER_WRAPPER ` settings (with corresponding ` EM_COMPILER_WRAPPER `
1473
1473
environment variable. This replaces the existing ` EMMAKEN_COMPILER `
1474
1474
environment variable which is deprecated, but still works for the time being.
1475
- The main differences is that ` EM_COMPILER_WRAPPER ` only wrapps the configured
1475
+ The main differences is that ` EM_COMPILER_WRAPPER ` only wraps the configured
1476
1476
version of clang rather than replacing it.
1477
1477
- ASAN_SHADOW_SIZE is deprecated. When using AddressSanitizer, the correct
1478
1478
amount of shadow memory will now be calculated automatically.
@@ -1484,7 +1484,7 @@ See docs/process.md for more on how version tagging works.
1484
1484
- Fix a rare pthreads main thread deadlock (that worsened in 2.0.2, but existed
1485
1485
before). (#12318 )
1486
1486
- The WebAssembly table is now created and exported by the generated wasm
1487
- module rather then constructed by the JS glue code. This is an implemention
1487
+ module rather then constructed by the JS glue code. This is an implementation
1488
1488
detail that should not affect most users, but reduces code size. (#12296 )
1489
1489
- Add ` getentropy ` in ` sys/random.h ` , and use that from libc++'s
1490
1490
` random_device ` . This is more efficient, see #12240 .
@@ -1632,7 +1632,7 @@ See docs/process.md for more on how version tagging works.
1632
1632
` EM_FOO ` this should be enough.
1633
1633
- Running emscripten under python2 is now deprecated. It will show up as a
1634
1634
warning (which can be disabled with ` -Wno-deprecated ` ). Please update to
1635
- python3 as we hope to remove support completely in the next releaase .
1635
+ python3 as we hope to remove support completely in the next release .
1636
1636
1637
1637
1.39.20: 07/20/2020
1638
1638
-------------------
@@ -2824,7 +2824,7 @@ v1.36.10: 9/24/2016
2824
2824
- Improved support for --proxy-to-worker build mode.
2825
2825
- Improved GLES3 support for glGet() features that WebGL2 does not have. (#4514 )
2826
2826
- Added support for implementation defined glReadPixels() format.
2827
- - Improved WebGL 2 support with closure compilter . (#4554 )
2827
+ - Improved WebGL 2 support with closure compiler . (#4554 )
2828
2828
- Implemented support for nanosleep() when building in pthreads mode (#4578 )
2829
2829
- Added support for llvm_ceil_f64 and llvm_floor_f64 intrinsics.
2830
2830
- Full list of changes:
@@ -2858,7 +2858,7 @@ v1.36.8: 8/20/2016
2858
2858
options for wasm.
2859
2859
- Added new emprofile.py script which can be used to profile toolchain wide
2860
2860
performance. (#4491 )
2861
- - Added new linker flag --output-eol, which specifices what kind of line
2861
+ - Added new linker flag --output-eol, which specifies what kind of line
2862
2862
endings to generate to the output files. (#4492 )
2863
2863
- Fixed a Windows bug where aborting execution with Ctrl-C might hang
2864
2864
Emscripten to an infinite loop instead. (#4494 )
@@ -3749,7 +3749,7 @@ v1.30.2: 4/1/2015
3749
3749
3750
3750
v1.30.1: 3/24/2015
3751
3751
------------------
3752
- - Upgraded LLVM+Clang from vrsion 3.5 to version 3.6.
3752
+ - Upgraded LLVM+Clang from version 3.5 to version 3.6.
3753
3753
- Full list of changes:
3754
3754
- Emscripten: https://github.com/emscripten-core/emscripten/compare/1.30.0...1.30.1
3755
3755
- Emscripten-LLVM: https://github.com/emscripten-core/emscripten-fastcomp/compare/1.30.0...1.30.1
@@ -4494,7 +4494,7 @@ v1.21.4: 7/17/2014
4494
4494
runtime.
4495
4495
- Have runtime mkdir() function call normalize the path to be created before
4496
4496
creation.
4497
- - Fixed an issue with omitting the third paramter in cwrap() call (#2511 ).
4497
+ - Fixed an issue with omitting the third parameter in cwrap() call (#2511 ).
4498
4498
- Fixed an issue where mouse event handling would throw an exception if the
4499
4499
page did not contain a canvas object.
4500
4500
- Fixed a GL initialization problem when user has extended Array with custom
@@ -4520,7 +4520,7 @@ v1.21.3: 7/10/2014
4520
4520
- Added implementations for SDL function SDL_AudioQuit and SDL_VideoQuit.
4521
4521
- Fix an issue with the optimizeShifts optimization enabled in previous version.
4522
4522
- Fixed the -s RELOOPER command line parameter to work.
4523
- - Fixed a bug where building the system libc migt result in a compiler deadlock
4523
+ - Fixed a bug where building the system libc might result in a compiler deadlock
4524
4524
on Windows.
4525
4525
- Removed emcc from trying to link in .dll files as static libraries on
4526
4526
Windows.
@@ -5298,7 +5298,7 @@ v1.7.0: 10/23/2013
5298
5298
- Several compiler stability fixes.
5299
5299
- Adds a JavaScript implementation of cxa_demangle function for demangling call
5300
5300
stack traces at runtime for easier debugging.
5301
- - GL context MSAA antialising is now DISABLED by default, to make the GL
5301
+ - GL context MSAA antialiasing is now DISABLED by default, to make the GL
5302
5302
behavior consistent with desktop usage.
5303
5303
- Added support to SDL, GLUT and GLFW libraries to specify MSAA on/off at startup.
5304
5304
- Implemented glColor4ubv in GL emulation mode.
0 commit comments