File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 77 "extensions" : [
88 " mhutchie.git-graph@1.30.0" ,
99 " ms-vsliveshare.vsliveshare@1.0.5948" ,
10- " rust-lang.rust-analyzer@0.3.2466 " ,
10+ " rust-lang.rust-analyzer@0.3.2474 " ,
1111 " tamasfe.even-better-toml@0.21.2" ,
1212 " usernamehw.errorlens@3.26.0"
1313 ]
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ find_program(CMAKE_CXX_COMPILER NAMES clang-cl REQUIRED)
1919find_program (CMAKE_AR NAMES llvm-lib REQUIRED)
2020
2121add_compile_options (--target =x86_64-pc-windows-msvc -fuse-ld=lld /winsdkdir ${WINDOWS_SDK_ROOT} /sdk /vctoolsdir ${WINDOWS_SDK_ROOT} /crt)
22- add_link_options (/manifest:no -libpath:${WINDOWS_SDK_ROOT} /sdk/lib/um/x64 -libpath:${WINDOWS_SDK_ROOT} /sdk/lib/ucrt/x64 -libpath:${WINDOWS_SDK_ROOT} /crt/lib/x64)
22+ add_link_options (/machine:x64 / manifest:no -libpath:${WINDOWS_SDK_ROOT} /sdk/lib/um/x64 -libpath:${WINDOWS_SDK_ROOT} /sdk/lib/ucrt/x64 -libpath:${WINDOWS_SDK_ROOT} /crt/lib/x64)
Original file line number Diff line number Diff line change 11#include < cstdint>
2+ #include < cstdlib>
23
34extern " C" int LLVMFuzzerTestOneInput (const uint8_t *data, std::size_t size)
45{
56 if (size > 0 && data[0 ] == ' H' )
67 if (size > 1 && data[1 ] == ' I' )
7- __builtin_trap ();
8+ abort ();
89
910 return 0 ;
1011}
You can’t perform that action at this time.
0 commit comments