Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Source/JavaScriptCore/API/tests/testapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include <wtf/Expected.h>
#include <wtf/Noncopyable.h>
#include <wtf/NumberOfCores.h>
#include <wtf/MainThread.h>
#include <wtf/Vector.h>
#include <wtf/text/MakeString.h>
#include <wtf/text/StringCommon.h>
Expand Down Expand Up @@ -1184,6 +1185,7 @@ void TestAPI::testBigInt()

void configureJSCForTesting()
{
WTF::initializeMainThread();
JSC::Config::configureForTesting();
JSC::Options::machExceptionHandlerSandboxPolicy = JSC::Options::SandboxPolicy::Allow;
}
Expand Down
2 changes: 2 additions & 0 deletions Source/ThirdParty/libwebrtc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@ set(webrtc_SOURCES
Source/third_party/boringssl/src/crypto/evp/evp.c
Source/third_party/boringssl/src/crypto/evp/evp_ctx.c
Source/third_party/boringssl/src/crypto/evp/pbkdf.c
Source/third_party/boringssl/src/crypto/evp/p_dh_asn1.c
Source/third_party/boringssl/src/crypto/evp/p_dh.c
Source/third_party/boringssl/src/crypto/evp/p_dsa_asn1.c
Source/third_party/boringssl/src/crypto/evp/p_ec_asn1.c
Source/third_party/boringssl/src/crypto/evp/p_ec.c
Expand Down
4 changes: 4 additions & 0 deletions Source/cmake/OptionsCommon.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,10 @@ if (DEBUG_FISSION)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--gdb-index")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--gdb-index")
endif ()
if (WTF_CPU_ARM)
string(REPLACE "-fdebug-types-section" "" CMAKE_C_FLAGS ${CMAKE_C_FLAGS})
string(REPLACE "-fdebug-types-section" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
endif ()
endif ()

set(GCC_OFFLINEASM_SOURCE_MAP_DEFAULT OFF)
Expand Down