Arsenii Lyashenko
Arsenii Lyashenko
I have stream of tokens. Token is enum like: ```rust enum Token { Error, Num, Str, ... } ``` `StreamOnce::uncons` documentation: `Returns Err if no element could be retrieved.` How...
```NASM times 1024 - ($-$$): db 0 ``` compiler says: `error: parser: instruction expected` 'Cause it expect: ```NASM times 1024 - ($-$$) db 0 ```
```NASM jmp CODE_SEG:boot2 ``` after `nasmfmt` becomes: ```NASM jmp CODE_SEG: boot2 ```
Why POCO doesn't have MinGW support? I think it is not difficult. I can even add support personally.
What do you think about advanced proxy support? I can try to add it, but I will need help of API designer(s).
Fixes #620
Is it possible to prefer shift over reduce in this grammar using LALRPOP, like yacc does in such conflicts by default? ```rs grammar; pub List = (Expr ";"?)*; Expr =...
I used `windows-gnu` toolchain: ``` C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/9.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: E:\ark0f\Programming\Rust\projects\project-sakura\target\debug\deps\libshaderc_sys-9ed1b06d472302b7.rlib(validate_builtins.cpp.obj):validate_builtins.cpp:(.text$_ZN8spvtools3val12_GLOBAL__N_117BuiltInsValidator20ValidateF32VecHelperERKNS0_10DecorationERKNS0_11InstructionEjRKSt8functionIF12spv_result_tRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEj.isra.0+0x496): undefined reference to `std::__cxx11::basic_ostringstream::basic_ostringstream()' C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/9.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: E:\ark0f\Programming\Rust\projects\project-sakura\target\debug\deps\libshaderc_sys-9ed1b06d472302b7.rlib(validate_builtins.cpp.obj):validate_builtins.cpp:(.text$_ZN8spvtools3val12_GLOBAL__N_117BuiltInsValidator14ValidateI32VecERKNS0_10DecorationERKNS0_11InstructionEjRKSt8functionIF12spv_result_tRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE.isra.0+0x187): undefined reference to `std::__cxx11::basic_ostringstream::basic_ostringstream()' C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/9.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: E:\ark0f\Programming\Rust\projects\project-sakura\target\debug\deps\libshaderc_sys-9ed1b06d472302b7.rlib(validate_builtins.cpp.obj):validate_builtins.cpp:(.text$_ZN8spvtools3val12_GLOBAL__N_117BuiltInsValidator14ValidateI32VecERKNS0_10DecorationERKNS0_11InstructionEjRKSt8functionIF12spv_result_tRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE.isra.0+0x32c): undefined reference to `std::__cxx11::basic_ostringstream::basic_ostringstream()' C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/9.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: E:\ark0f\Programming\Rust\projects\project-sakura\target\debug\deps\libshaderc_sys-9ed1b06d472302b7.rlib(validate_builtins.cpp.obj):validate_builtins.cpp:(.text$_ZN8spvtools3val12_GLOBAL__N_117BuiltInsValidator20ValidateF32ArrHelperERKNS0_10DecorationERKNS0_11InstructionEjRKSt8functionIF12spv_result_tRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEj.isra.0+0x26b): undefined reference to `std::__cxx11::basic_ostringstream::basic_ostringstream()' C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/9.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe:...
Resolves #1131. [gear-tech.github.io/performance-charts](https://gear-tech.github.io/performance-charts/) To do: - [x] Instruction weight charts - [x] 3 charts in a row in GH pages - [x] Make unit as ms - [x] Check SSH...