Skip to content

Instantly share code, notes, and snippets.

View fujii's full-sized avatar

Fujii Hironori fujii

View GitHub Profile
skia-chat
@bsalomon created this channel on December 2nd. This is the very beginning of the skia-chat channel. Description: Skia (edit)
Add an app Add people Share channel Send emails to channel
bsalomon 4:49 AM
joined #skia-chat.
bsalomon 4:49 AM
set the channel description: Skia
@fujii
fujii / build-apple-win.log
Last active November 16, 2020 06:39
WebKit AppleWin port build log. perl .\Tools\Scripts\build-webkit
Falling back to existing version of WebKitSupportLibrary.
Checking for newer version of WebKitAuxiliaryLibrary.zip...
Located a file of type application/zip of size 2487226.
Current WebKitAuxiliaryLibrary is up to date.
*************************************************************
Mathematical fonts, such as Latin Modern Math are needed to
use the MathML feature. You do not appear to have these fonts
on your system.
You can download a suitable set of fonts from the following URL:
diff --git a/samples/multi_window/MultiWindow.cpp b/samples/multi_window/MultiWindow.cpp
index 180726655..bcccf0c16 100644
--- a/samples/multi_window/MultiWindow.cpp
+++ b/samples/multi_window/MultiWindow.cpp
@@ -64,8 +64,17 @@ void main()
return false;
}
+ std::vector<EGLint> attributes;
+ attributes.push_back(EGL_FIXED_SIZE_ANGLE);
Opened log file 'S:\gb\test-results\CrashLog_19d4_2020-04-10_05-58-21-150.txt'
0:000> .srcpath "S:\gb"
Source search path is: S:\gb
************* Path validation summary **************
Response Time (ms) Location
OK S:\gb
0:000> !analyze -vv
*******************************************************************************
* *
Updating WinCairoRequirements.zip...
Found existing release: v2019.11.27
Seeking latest release from WebKitForWindows/WinCairoRequirements...
Found release to download: v2019.11.27
Already up-to-date!
+ cmake -DPORT="WinCairo" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Debug -G Ninja -DSHOW_BINDINGS_GENERATION_PROGRESS=1 -DDEVELOPER_MODE=ON -DENABLE_EXPERIMENTAL_FEATURES=ON "C:/webkit/gb"
-- The C compiler identification is Clang 10.0.0 with MSVC-like command-line
-- The CXX compiler identification is Clang 10.0.0 with MSVC-like command-line
-- Check for working C compiler: C:/Program Files/LLVM/bin/clang-cl.exe
-- Check for working C compiler: C:/Program Files/LLVM/bin/clang-cl.exe -- works
Updating WinCairoRequirements.zip...
Found existing release: v2019.06.17
Seeking latest release from WebKitForWindows/WinCairoRequirements...
Found release to download: v2019.06.17
Already up-to-date!
+ cmake -DPORT="WinCairo" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Debug -G Ninja -DSHOW_BINDINGS_GENERATION_PROGRESS=1 -DDEVELOPER_MODE=ON -DENABLE_EXPERIMENTAL_FEATURES=ON "C:/webkit/gb"
-- The C compiler identification is MSVC 19.23.28106.4
-- The CXX compiler identification is MSVC 19.23.28106.4
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/VC/Tools/MSVC/14.23.28105/bin/Hostx64/x64/cl.exe
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/VC/Tools/MSVC/14.23.28105/bin/Hostx64/x64/cl.exe -- works
This file has been truncated, but you can view the full file.
# To display the perf.data header info, please use --header/--header-only options.
#
#
# Total Lost Samples: 0
#
# Samples: 301K of event 'cpu-clock'
# Event count (approx.): 75468250000
#
# Children Self Command Shared Object Symbol
Function Name Total CPU [unit, %] Self CPU [unit, %] Module
+ MiniBrowser.exe (PID: 14724) 16296 (100.00%) 0 (0.00%) Multiple modules
| + ntdll.dll!0x007ffe4084ce71 16261 (99.79%) 0 (0.00%) ntdll.dll
|| + kernel32.dll!0x007ffe3f2f7bd4 16261 (99.79%) 0 (0.00%) kernel32.dll
||| + __scrt_common_main_seh 16261 (99.79%) 0 (0.00%) MiniBrowser.exe
|||| + wWinMain 16261 (99.79%) 0 (0.00%) MiniBrowser.exe
||||| + wWinMain 16261 (99.79%) 0 (0.00%) MiniBrowserLib.dll
|||||| + WebKitMessageLoop::run 16261 (99.79%) 0 (0.00%) WebKit.dll
||||||| + user32.dll!0x007ffe3e8e6212 16221 (99.54%) 0 (0.00%) user32.dll
|||||||| + user32.dll!0x007ffe3e8e681d 16221 (99.54%) 0 (0.00%) user32.dll
diff --git a/ports/pixman/portfile.cmake b/ports/pixman/portfile.cmake
index f5f8861..2ca28bd 100644
--- a/ports/pixman/portfile.cmake
+++ b/ports/pixman/portfile.cmake
@@ -37,14 +37,6 @@ elseif (VCPKG_TARGET_ARCHITECTURE MATCHES "^arm")
)
endif ()
-if (NOT VCPKG_CMAKE_SYSTEM_NAME)
- set(VCPKG_CMAKE_SYSTEM_NAME Windows)
@fujii
fujii / cloop.patch
Created June 26, 2019 09:55
Using LLInt CLoop on WebKit Windows x64
diff --git a/Source/JavaScriptCore/assembler/MacroAssemblerCodeRef.h b/Source/JavaScriptCore/assembler/MacroAssemblerCodeRef.h
index 54658dd1dab..b936f7d4067 100644
--- a/Source/JavaScriptCore/assembler/MacroAssemblerCodeRef.h
+++ b/Source/JavaScriptCore/assembler/MacroAssemblerCodeRef.h
@@ -56,7 +56,7 @@ namespace JSC {
template<PtrTag> class MacroAssemblerCodePtr;
-enum OpcodeID : unsigned;
+enum OpcodeID : uint64_t;