Update Bindings.md

This commit is contained in:
Akilan Selvacoumar
2023-12-16 02:08:26 +00:00
committed by GitHub
parent 751f1b15a6
commit 95ab45bf62

View File

@@ -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
```