diff --git a/Docs/Bindings.md b/Docs/Bindings.md index 5d6cbf0..879ef82 100644 --- a/Docs/Bindings.md +++ b/Docs/Bindings.md @@ -4,4 +4,26 @@ ## Current languages supported - Python -## Linking process +## How to build shared object files +The easier way +```bash +make sharedObjects +``` +Or the direct way +```bash +cd Bindings && go build -buildmode=c-shared -o p2prc.so +``` +If successfully built: +```bash +# Enter into the Bindings directory +cd Bindings +# List files +ls +# Find files +p2prc.h p2prc.so +``` + + + + +