aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-06-15 10:55:48 +0200
committerGitHub <noreply@github.com>2016-06-15 10:55:48 +0200
commite305c47ed628770d99754207031b45bbb7a44517 (patch)
tree6bb3981cf8f624c7d7b31dbdca9ebbc4288643bb /README.md
parent9774edbe34656802102536949a6428e7f5e76607 (diff)
parentbea415417e87fbb403095e8cd3fb8512a1a97af8 (diff)
downloadgo-git-e305c47ed628770d99754207031b45bbb7a44517.tar.gz
Merge pull request #54 from vmarkovtsev/cshared
Add cshared files to allow building wrappers in other languages
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 57f7f64..4ce3ed1 100644
--- a/README.md
+++ b/README.md
@@ -113,6 +113,14 @@ fmt.Println(commit)
```
+Wrapping
+--------
+
+go-git can be wrapped into any language which supports shared library interop.
+[Python wrapper](https://github.com/src-d/gypogit) already exists.
+This is provided by "cshared" [cgo](https://golang.org/cmd/cgo/) files which can be built
+with `go build -o libgogit.so -buildmode=c-shared github.com/src-d/go-git/cshared`.
+
Acknowledgements
----------------