Compare commits

...

3 Commits

Author SHA1 Message Date
Jarred Sumner
39926417bc Update ZigGlobalObject.cpp 2025-09-03 02:35:09 -07:00
Jarred Sumner
34a7b2da70 Update SetupWebKit.cmake 2025-09-03 00:51:46 -07:00
Jarred Sumner
cf9c6ccb56 Bump WebKit 2025-09-03 00:50:47 -07:00
2 changed files with 2 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ option(WEBKIT_VERSION "The version of WebKit to use")
option(WEBKIT_LOCAL "If a local version of WebKit should be used instead of downloading")
if(NOT WEBKIT_VERSION)
set(WEBKIT_VERSION f474428677de1fafaf13bb3b9a050fe3504dda25)
set(WEBKIT_VERSION df8aa4c4d01a1c2fe22ac599adfe0a582fce2b20)
endif()
string(SUBSTRING ${WEBKIT_VERSION} 0 16 WEBKIT_VERSION_PREFIX)

View File

@@ -300,6 +300,7 @@ extern "C" void JSCInitialize(const char* envp[], size_t envc, void (*onCrash)(c
JSC::Options::evalMode() = evalMode;
JSC::Options::heapGrowthSteepnessFactor() = 1.0;
JSC::Options::heapGrowthMaxIncrease() = 2.0;
JSC::Options::useAsyncStackTrace() = true;
JSC::dangerouslyOverrideJSCBytecodeCacheVersion(getWebKitBytecodeCacheVersion());
#ifdef BUN_DEBUG