enabled automatic function signature generation for cython code

This commit is contained in:
Overwatch 2015-02-08 23:07:52 +01:00
parent 08e95af197
commit 4d92470f6d

View file

@ -12,7 +12,7 @@ CFLAGS=(-Wall -pedantic -std=c99 -fPIC)
LFLAGS=(-shared)
echo "- translating from Python to C"
cython -3 cython_types.pyx -o cython_types.c || die "translating"
cython -f -3 --fast-fail -X embedsignature=True cython_types.pyx -o cython_types.c || die "translating"
echo "- compiling and linking"
gcc $CFLAGS -I/usr/include/python3.4 -pthread -c cython_types.c || die "compilation"