enabled automatic function signature generation for cython code
This commit is contained in:
parent
08e95af197
commit
4d92470f6d
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ CFLAGS=(-Wall -pedantic -std=c99 -fPIC)
|
||||||
LFLAGS=(-shared)
|
LFLAGS=(-shared)
|
||||||
|
|
||||||
echo "- translating from Python to C"
|
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"
|
echo "- compiling and linking"
|
||||||
gcc $CFLAGS -I/usr/include/python3.4 -pthread -c cython_types.c || die "compilation"
|
gcc $CFLAGS -I/usr/include/python3.4 -pthread -c cython_types.c || die "compilation"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue