You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gate *glGetProcAddress() functions behind a linker flag -sGL_ENABLE_GET_PROC_ADDRESS=1 so that we can restrict new GL extensions from being advertised in the future that *glGetProcAddress() cannot support.
Copy file name to clipboardExpand all lines: src/library_exceptions_stub.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ var LibraryExceptions = {};
22
22
].forEach(function(name){
23
23
LibraryExceptions[name]=function(){abort();};
24
24
#if !INCLUDE_FULL_LIBRARY
25
-
// This method of link-time error genertation is not compatible with INCLUDE_FULL_LIBRARY
25
+
// This method of link-time error generation is not compatible with INCLUDE_FULL_LIBRARY
26
26
LibraryExceptions[name+'__deps']=[function(){
27
27
error(`DISABLE_EXCEPTION_THROWING was set (likely due to -fno-exceptions), which means no C++ exception throwing support code is linked in, but such support is required by symbol '${name}'. Either do not set DISABLE_EXCEPTION_THROWING (if you do want exception throwing) or compile all source files with -fno-except (so that no exceptions support code is required); also make sure DISABLE_EXCEPTION_CATCHING is set to the right value - if you want exceptions, it should be off, and vice versa.`);
0 commit comments