Alexander Evgin

Results 16 issues of Alexander Evgin

_Prerequisites_ section now says that Python 3.7+ is supported for Rust toolchain installation. However this is not true: ``` Traceback (most recent call last): File "rslang-installer.py", line 19, in from...

bug
documentation

We need to test and stabilize build of `rslang` on MacOS. Tasks: - [x] #336 - [x] #351 - [ ] Support dynamic linking of rslang on MacOS

maintenance

This is an umbrella issue for expanding zkLLVM set of memory management functions to complete. Right now we have only `malloc` and `free`. This is not enough to handle even...

enhancement

Our [docs](https://docs.nil.foundation/zkllvm) need information about Rust part of zkLLVM, just like C++ part: - How to build and install - How to use compiler - How to use out patched...

documentation

In zkLLVM we added new compilation target `"assigner"`. This compilation target must be used in order to generate circuits: it produces LLVM assembly files which gonna be passed to `assigner`...

## How to reproduce - `main.cpp` ```cpp #include "nil/blueprint/blueprint/plonk/assignment.hpp" int main() { return 0; } ``` - `CMakeLists.txt` ```cmake cmake_minimum_required(VERSION 3.25) add_executable(test main.cpp) ``` - `flake.nix` ```nix { description =...