-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Enable WASM_BIGINT by default #19156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 9 commits
ee34a80
5b5e426
520301b
85793ac
22393a4
9fe22ab
e255dad
e1108d6
314cf8a
a52372d
c64adf2
e7259ed
09ea912
6699531
d907b0e
af838e7
9aac743
5142300
71ca03a
d23687e
83165d1
0fb2458
08c7170
d1e4aec
2ae89c5
3f3c561
bf566aa
9459701
8dbb1ae
b107f47
6b71f83
6973fea
560120a
84836b2
356a840
00aab91
0ca6930
5985cdd
8566684
c35d241
b537cc7
339b323
400f01e
62366ca
2f8f82c
8eab1f5
c93f72f
568ee40
fe12dc0
a42cb9e
4998ef6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1382,7 +1382,7 @@ var DYNCALLS = false; | |
// i64 is used. If WASM_BIGINT is present, the default minimum supported browser | ||
// versions will be increased to the min version that supports BigInt. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This last sentence should probably just be removed I think |
||
// [link] | ||
var WASM_BIGINT = false; | ||
var WASM_BIGINT = true; | ||
|
||
// WebAssembly defines a "producers section" which compilers and tools can | ||
// annotate themselves in, and LLVM emits this by default. | ||
|
@@ -1745,10 +1745,10 @@ var AUTO_NATIVE_LIBRARIES = true; | |
// versions >= MIN_FIREFOX_VERSION | ||
// are desired to work. Pass -sMIN_FIREFOX_VERSION=majorVersion to drop support | ||
// for Firefox versions older than < majorVersion. | ||
// Firefox ESR 60.5 (Firefox 65) was released on 2019-01-29. | ||
// Firefox ESR 68 was released on July 9, 2019. | ||
// MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported. | ||
// [link] | ||
var MIN_FIREFOX_VERSION = 65; | ||
var MIN_FIREFOX_VERSION = 68; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should add this to the ChangeLog, along with a note about bigint itself being enabled by default. |
||
|
||
// Specifies the oldest version of desktop Safari to target. Version is encoded | ||
// in MMmmVV, e.g. 70101 denotes Safari 7.1.1. | ||
|
Uh oh!
There was an error while loading. Please reload this page.