2020-04-01 01:17:09 +01:00
# swig
2023-06-13 18:14:43 +01:00
> Generate bindings between C/C++ code and various high level languages such as JavaScript, Python, C#, and more.
2024-02-14 20:25:13 +00:00
> It uses special `.i` or `.swg` files to generate the bindings (C/C++ with SWIG directives, then outputs a C/C++ file that contains all the wrapper code needed to build an extension module.
2022-02-01 09:06:33 +00:00
> More information: <http://www.swig.org>.
2020-04-01 01:17:09 +01:00
- Generate a binding between C++ and Python:
`swig -c++ -python -o {{path/to/output_wrapper.cpp}} {{path/to/swig_file.i}}`
- Generate a binding between C++ and Go:
`swig -go -cgo -intgosize 64 -c++ {{path/to/swig_file.i}}`
- Generate a binding between C and Java:
`swig -java {{path/to/swig_file.i}}`
2023-11-12 03:08:58 +00:00
- Generate a binding between C and Ruby and prefix the Ruby module with `foo::bar::` :
2020-04-01 01:17:09 +01:00
`swig -ruby -prefix "{{foo::bar::}}" {{path/to/swig_file.i}}`