This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ech off | |
REM Creates "myroot" which can be used with `clang-cl /winsysroot myroot` | |
setlocal | |
REM Adjust this one accordingly: | |
set VSInstallDir="%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Professional" | |
set WinSdkDir="%ProgramFiles(x86)%\Windows Kits" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
inotifywait -m -e create -r $1 | while read dir action file; do | |
# Coalese additional queued up events, if any | |
# If events keep arriving faster than we can read them off stdin here, | |
# we'll never run the script! If you're worried about that, set | |
# SECONDS to 0 before this loop and make the conditional also check that | |
# $SECONDS is smaller than some timeout to make sure that the script runs | |
# every now and then. The stdin pipe buffer size means there won't be an | |
# unbounded buildup on stdin -- instead inotifywait will block writing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 0c783ec6a639401153d96de1f4bc6ec8117c409c | |
Author: Nico Weber <[email protected]> | |
Date: Sun Jul 19 19:49:54 2020 -0400 | |
fix one ppm fuzzer issue and two jpeg issues, all harmless DoS | |
diff --git a/Libraries/LibGfx/JPGLoader.cpp b/Libraries/LibGfx/JPGLoader.cpp | |
index 57772534d..03f7b2822 100644 | |
--- a/Libraries/LibGfx/JPGLoader.cpp | |
+++ b/Libraries/LibGfx/JPGLoader.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit c9d1d14e56d7ed3cb3d43053c06a86229dc9ca65 | |
Author: Nico Weber <[email protected]> | |
Date: Sat Jul 18 22:35:01 2020 -0400 | |
bmp loader does not validate data_offset, can use that for arbitrary read, with <canvas> can probably leak arbitrary user mem to js | |
diff --git a/Libraries/LibGfx/BMPLoader.cpp b/Libraries/LibGfx/BMPLoader.cpp | |
index a6c82ca15..91299749a 100644 | |
--- a/Libraries/LibGfx/BMPLoader.cpp | |
+++ b/Libraries/LibGfx/BMPLoader.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ctypes | |
import os | |
import sys | |
libSystem = ctypes.CDLL('libSystem.dylib') | |
# `typedef void *posix_spawnattr_t;` on darwin | |
attrp = ctypes.c_void_p() | |
e = libSystem.posix_spawnattr_init(ctypes.byref(attrp)) | |
print('spawnattr init ret:', e) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Works with py2 and py3 | |
import ctypes | |
import os | |
import sys | |
libSystem = ctypes.CDLL('libSystem.dylib') | |
spawn = libSystem.posix_spawnp | |
spawn.restype = ctypes.c_int | |
spawn.argtypes = ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cmake -P foo.cmake | |
include(FindPythonInterp) | |
#set(FOO_DIR "/Users/thakis/blah") | |
set(FOO_DIR "/Users/thakis/blah" CACHE STRING "wsdf") | |
function(configure_lit_site_cfg site_in site_out) | |
cmake_parse_arguments(ARG "" "" "MAIN_CONFIG;OUTPUT_MAPPING;PATHS" ${ARGN}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/llvm/include/llvm/Demangle/MicrosoftDemangle.h b/llvm/include/llvm/Demangle/MicrosoftDemangle.h | |
index c6f26061bed..96d015f2ded 100644 | |
--- a/llvm/include/llvm/Demangle/MicrosoftDemangle.h | |
+++ b/llvm/include/llvm/Demangle/MicrosoftDemangle.h | |
@@ -202,7 +202,7 @@ private: | |
QualifiedNameNode *demangleNameScopeChain(StringView &MangledName, | |
IdentifierNode *UnqualifiedName); | |
- IdentifierNode *demangleNameScopePiece(StringView &MangledName); | |
+ Node *demangleNameScopePiece(StringView &MangledName); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mostly superceded by https://github.com/nico/llvm-project/commit/c43875075d15a58e674792b45b0e96d721296aed | |
commit 02c27a95ecc0555ba30c363321cc62459e469bff | |
Author: Nico Weber <[email protected]> | |
Date: Fri Jun 15 16:54:38 2018 -0400 | |
demo for running check-clang on swarming (tested on mac only) | |
Use like so: | |
# Instant: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Chrome at #704646 | |
LLVM at r374370 | |
Llvm args.gn | |
llvm_targets_to_build = "all" | |
clang_base_path = "c:/src/chrome/src/third_party/llvm-build/Release+Asserts" | |
use_goma = true | |
Chrome args.gn |