From d9c2e44b25b71b91237cdf60ac5653fb950e0680 Mon Sep 17 00:00:00 2001 From: Leif Middelschulte Date: Tue, 26 Jun 2012 16:37:34 +0000 Subject: [PATCH] Fix compile instructions. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-c@13194 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Doc/Manual/C.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/Manual/C.html b/Doc/Manual/C.html index 54e6338e6..8d622a799 100644 --- a/Doc/Manual/C.html +++ b/Doc/Manual/C.html @@ -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