1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-30 06:50:31 +02:00

tour.texi compilation fix

* doc/ref/tour.texi (Writing Guile Extensions): Fix compilation
  example.
This commit is contained in:
Andy Wingo 2011-02-20 15:01:37 +01:00
parent 4b93693dff
commit f244cc5154

View file

@ -163,7 +163,8 @@ This C source file needs to be compiled into a shared library. Here is
how to do it on GNU/Linux: how to do it on GNU/Linux:
@smallexample @smallexample
gcc -shared -o libguile-bessel.so -fPIC bessel.c gcc `pkg-config --cflags guile-@value{EFFECTIVE-VERSION}` \
-shared -o libguile-bessel.so -fPIC bessel.c
@end smallexample @end smallexample
For creating shared libraries portably, we recommend the use of GNU For creating shared libraries portably, we recommend the use of GNU