Fix compile instructions.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-c@13194 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Leif Middelschulte 2012-06-26 16:37:34 +00:00
commit d9c2e44b25

View file

@ -147,7 +147,7 @@ The next step is to build a dynamically loadable module, which we can link to ou
$ swig -c example.i
$ gcc -c example_wrap.c
$ gcc -c example_proxy.c
$ gcc -shared example_wrap.o -o libexample.so
$ gcc -shared example_wrap.o example_proxy.o -o libexample.so
</pre></div>
<p>