Skip to content

Commit

Permalink
Bump WebKit (#13355)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner authored Aug 17, 2024
1 parent 7fd072f commit 33c91fe
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_policy(SET CMP0067 NEW)

set(CMAKE_POLICY_DEFAULT_CMP0069 NEW)
set(Bun_VERSION "1.1.25")
set(WEBKIT_TAG 1cdc5e606ad7d451853f75a068a320148385f397)
set(WEBKIT_TAG 21fc366db3de8f30dbb7f5997b9b9f5cf422ff1e)

set(BUN_WORKDIR "${CMAKE_CURRENT_BINARY_DIR}")
message(STATUS "Configuring Bun ${Bun_VERSION} in ${BUN_WORKDIR}")
Expand Down
1 change: 1 addition & 0 deletions scripts/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

set -euo pipefail

export CI=${CI:-0}
export USE_LTO=${USE_LTO:-0}
export FORCE_PIC=${FORCE_PIC:-}
UNAME_OS="$(uname -s)"
Expand Down
3 changes: 0 additions & 3 deletions src/bun.js/bindings/ZigGlobalObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,6 @@ extern "C" void JSCInitialize(const char* envp[], size_t envc, void (*onCrash)(c
JSC::Options::useUint8ArrayBase64Methods() = true;
JSC::Options::useJITCage() = false;
JSC::Options::useShadowRealm() = true;
JSC::Options::useResizableArrayBuffer() = true;
JSC::Options::usePromiseWithResolversMethod() = true;
JSC::Options::useV8DateParser() = true;
JSC::Options::evalMode() = evalMode;
JSC::Options::usePromiseTryMethod() = true;
Expand All @@ -228,7 +226,6 @@ extern "C" void JSCInitialize(const char* envp[], size_t envc, void (*onCrash)(c
#ifdef BUN_DEBUG
JSC::Options::showPrivateScriptsInStackTraces() = true;
#endif
JSC::Options::useSetMethods() = true;

if (LIKELY(envc > 0)) {
while (envc--) {
Expand Down

0 comments on commit 33c91fe

Please sign in to comment.