Commit aa286f89 authored by Phil Austin's avatar Phil Austin

chaos benchmark working for cython v0.24

parent d57c269a
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
* Known failures * Known failures
* benchmarks/chaos.py failing for both python2 and python3, excluded in setup.py * benchmarks/chaos.py requires cython 0.24 or newer
* embed and freeze work for python2, compile but fail for python3 * embed and freeze work for python2, compile but fail for python3
...@@ -9,5 +9,5 @@ setup( ...@@ -9,5 +9,5 @@ setup(
name = 'benchmarks', name = 'benchmarks',
ext_modules = cythonize("*.py", language_level=3, annotate=True, ext_modules = cythonize("*.py", language_level=3, annotate=True,
compiler_directives=directives, compiler_directives=directives,
exclude=["setup.py","chaos.py"]), exclude=["setup.py"]),
) )
CC = gcc CC = gcc
CYTHON = cython CYTHON = ../../bin/cython
CYTHON_FREEZE = ../../bin/cython_freeze CYTHON_FREEZE = ../../bin/cython_freeze
PYTHON = python PYTHON = python
RST2HTML = rst2html RST2HTML = rst2html
...@@ -17,6 +17,7 @@ LDFLAGS = $(PY_LDFLAGS) ...@@ -17,6 +17,7 @@ LDFLAGS = $(PY_LDFLAGS)
LDLIBS = -L$(LIBDIR1) -L$(LIBDIR2) -l$(PYLIB) LDLIBS = -L$(LIBDIR1) -L$(LIBDIR2) -l$(PYLIB)
# Name of executable # Name of executable
TARGETS = nCr python TARGETS = nCr python
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment