From 7a8cd4e9ece866a60868a2707717ab1ae44ece57 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Wed, 18 Jul 2012 13:19:31 +0200 Subject: [PATCH] remove the -t option in cython, look like people have an hard time to get a cython working. just use the standard one then. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0342c538a..563b5653e 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ ios: echo "First build ========================================" -PATH="$(IOSPATH)" $(HOSTPYTHON) setup.py build_ext -g echo "cythoning ==========================================" - find . -name *.pyx -exec cython -t {} \; + find . -name *.pyx -exec cython {} \; echo "Second build =======================================" PATH="$(IOSPATH)" $(HOSTPYTHON) setup.py build_ext -g PATH="$(IOSPATH)" $(HOSTPYTHON) setup.py install -O2 --root iosbuild