Merge remote-tracking branch 'origin/stable-2.0'
[bpt/guile.git] / libguile / guile.c
1 /* Copyright (C) 1996, 1997, 2000, 2001, 2006, 2008,
2 * 2011 Free Software Foundation, Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
18 */
19
20 /* This is the 'main' function for the `guile' executable. It is not
21 included in libguile.a.
22
23 Eventually, we hope this file will be automatically generated,
24 based on the list of installed, statically linked libraries on the
25 system. For now, please don't put interesting code in here. */
26
27 #ifdef HAVE_CONFIG_H
28 # include <config.h>
29 #endif
30
31 #ifdef __MINGW32__
32 # define SCM_IMPORT 1
33 #endif
34 #include <libguile.h>
35
36 #ifdef HAVE_CONFIG_H
37 #include <libguile/scmconfig.h>
38 #endif
39 #include <ltdl.h>
40 #include <locale.h>
41
42 #ifdef HAVE_WINSOCK2_H
43 #include <winsock2.h>
44 #endif
45
46 /* Debugger interface (don't change the order of the following lines) */
47 #define GDB_TYPE SCM
48 #include <libguile/gdb_interface.h>
49 GDB_INTERFACE;
50
51 static void
52 inner_main (void *closure SCM_UNUSED, int argc, char **argv)
53 {
54 #ifdef __MINGW32__
55 /* This is necessary to startup the Winsock API under Win32. */
56 WSADATA WSAData;
57 WSAStartup (0x0202, &WSAData);
58 GDB_INTERFACE_INIT;
59 #endif /* __MINGW32__ */
60
61 /* module initializations would go here */
62 scm_shell (argc, argv);
63
64 #ifdef __MINGW32__
65 WSACleanup ();
66 #endif /* __MINGW32__ */
67 }
68
69 int
70 main (int argc, char **argv)
71 {
72 /* Install the locale right at the beginning so that string conversion
73 for command-line arguments, along with possible error messages, use
74 the right locale. See
75 <https://lists.gnu.org/archive/html/guile-devel/2011-11/msg00041.html>
76 for the rationale. */
77 if (setlocale (LC_ALL, "") == NULL)
78 fprintf (stderr, "guile: warning: failed to install locale\n");
79
80 scm_install_gmp_memory_functions = 1;
81 scm_boot_guile (argc, argv, inner_main, 0);
82 return 0; /* never reached */
83 }
84
85 /*
86 Local Variables:
87 c-file-style: "gnu"
88 End:
89 */