docs: update README.md; claim that native synth is faster was false

This commit is contained in:
5684185+vsariola@users.noreply.github.com
2025-06-17 18:20:35 +03:00
parent 340620ed49
commit c77d541dc6

View File

@ -206,11 +206,15 @@ there by default.
### Native virtual machine ### Native virtual machine
The native bridge allows Go to call the sointu compiled x86 native virtual The native bridge allows Go to call the Sointu compiled x86 native virtual
machine, through cgo, instead of using the Go written bytecode interpreter. It's machine, through cgo, instead of using the Go written bytecode interpreter. With
likely slightly faster than the interpreter. Before you can actually run it, you the latest Go compiler, the native virtual machine is actually slower than the
need to build the bridge using CMake (thus, ***this will not work with go Go-written one, but importantly, the native virtual machine allows you to test
get***). that the patch also works within the stack limits of the x87 virtual machine,
which is the VM used in the compiled intros.
Before you can actually run it, you need to build the bridge using CMake (thus,
***this will not work with go get***).
#### Prerequisites #### Prerequisites