Merge remote-tracking branch 'origin/stable-2.0'
[bpt/guile.git] / libguile / guile.c
CommitLineData
bb9b357e
LC
1/* Copyright (C) 1996, 1997, 2000, 2001, 2006, 2008,
2 * 2011 Free Software Foundation, Inc.
3 *
73be1d9e 4 * This library is free software; you can redistribute it and/or
53befeb7
NJ
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.
0487b82f 8 *
53befeb7
NJ
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
0487b82f 13 *
73be1d9e
MV
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
53befeb7
NJ
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
73be1d9e 18 */
0487b82f
JB
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
dbb605f5 27#ifdef HAVE_CONFIG_H
e938aff1
RB
28# include <config.h>
29#endif
30
d7db9f60 31#ifdef __MINGW32__
8f99e3f3 32# define SCM_IMPORT 1
d7db9f60 33#endif
0487b82f
JB
34#include <libguile.h>
35
4ed6bae2 36#ifdef HAVE_CONFIG_H
a0599745 37#include <libguile/scmconfig.h>
4ed6bae2 38#endif
a8255dca 39#include <ltdl.h>
bb9b357e 40#include <locale.h>
4ed6bae2 41
f87c105a 42#ifdef HAVE_WINSOCK2_H
82893676
MG
43#include <winsock2.h>
44#endif
45
0487b82f
JB
46/* Debugger interface (don't change the order of the following lines) */
47#define GDB_TYPE SCM
48#include <libguile/gdb_interface.h>
49GDB_INTERFACE;
50
51static void
e81d98ec 52inner_main (void *closure SCM_UNUSED, int argc, char **argv)
0487b82f 53{
82893676
MG
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
0487b82f
JB
61 /* module initializations would go here */
62 scm_shell (argc, argv);
82893676
MG
63
64#ifdef __MINGW32__
65 WSACleanup ();
66#endif /* __MINGW32__ */
0487b82f
JB
67}
68
69int
70main (int argc, char **argv)
71{
bb9b357e
LC
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
b57bf272 80 scm_install_gmp_memory_functions = 1;
0487b82f
JB
81 scm_boot_guile (argc, argv, inner_main, 0);
82 return 0; /* never reached */
83}
89e00824
ML
84
85/*
86 Local Variables:
87 c-file-style: "gnu"
88 End:
89*/