freeze: README: fix typos and mistakes in example
authorMark Lodato <lodatom@gmail.com>
Sun, 4 Oct 2009 23:32:43 +0000 (19:32 -0400)
committerMark Lodato <lodatom@gmail.com>
Sun, 4 Oct 2009 23:32:43 +0000 (19:32 -0400)
I mis-spelled "combinatorics", and I forgot to use the -c flag to gcc.

Demos/freeze/README.rst

index 1a6f36a1d8325e343b9e7ca65a2c1a31b57a4eb2..d2165a8f1a7d11409aacb412c85f75b3146f099d 100644 (file)
@@ -47,12 +47,12 @@ The provided Makefile creates an executable, *nCr*, using combinatorics as the
 "main" module.  It basically performs the following (ignoring the compiler
 flags)::
 
-    $ cython_freeze combintorics cmath > nCr.c
+    $ cython_freeze combinatorics cmath > nCr.c
     $ cython combinatorics.pyx
     $ cython cmath.pyx
-    $ gcc nCr.c -o nCr.o
-    $ gcc combinatorics.c -o combinatorics.o
-    $ gcc cmath.c -o cmath.o
+    $ gcc -c nCr.c
+    $ gcc -c combinatorics.c
+    $ gcc -c cmath.c
     $ gcc nCr.o combinatorics.o cmath.o -o nCr
 
 Because the combinatorics module was listed first, its ``__name__`` is set