From 95ab45bf6264d32c54724cf0a131dd328e91bc4d Mon Sep 17 00:00:00 2001 From: Akilan Selvacoumar <31743758+Akilan1999@users.noreply.github.com> Date: Sat, 16 Dec 2023 02:08:26 +0000 Subject: [PATCH] Update Bindings.md --- Docs/Bindings.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) 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 +``` + + + + +