Haven't gotten this to run yet because my copy of Python does not meet the criteria he listed in the Readme (`Python 3 must be compiled without sigaltstack enabled.`)
However I got it to build on Arch Linux.
First of all: modifying `cgo.go` didn't work for me. Not sure why: but it's included to late in the build process, `abstract.go` bombs out on the compilation.
These flags worked for me just fine on Arch Linux:
`// #cgo pkg-config: libffi python-3.3`
That's assuming you have `.pc` files for libffi and python on your system. (Which might not be the case if you're building it from scratch.)
However I got it to build on Arch Linux.
First of all: modifying `cgo.go` didn't work for me. Not sure why: but it's included to late in the build process, `abstract.go` bombs out on the compilation.
These flags worked for me just fine on Arch Linux: `// #cgo pkg-config: libffi python-3.3`
That's assuming you have `.pc` files for libffi and python on your system. (Which might not be the case if you're building it from scratch.)