This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Added new flag (--use-xsloader) to use XSLoader when in backward
[perl5.git] / miniperlmain.c
CommitLineData
d6376244
JH
1/* miniperlmain.c
2 *
cbdf9ef8 3 * Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
1d325971 4 * 2004, 2005 by Larry Wall and others
d6376244
JH
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
a0d0e21e
LW
11/*
12 * "The Road goes ever on and on, down from the door where it began."
13 */
14
166f8a29
DM
15/* This file contains the main() function for the perl interpreter.
16 * Note that miniperlmain.c contains main() for the 'miniperl' binary,
17 * while perlmain.c contains main() for the 'perl' binary.
18 *
ddfa107c
DM
19 * Miniperl is like perl except that it does not support dynamic loading,
20 * and in fact is used to build the dynamic modules needed for the 'real'
61296642 21 * perl executable.
166f8a29
DM
22 */
23
60e4866f 24#ifdef OEMVS
9133bbab 25#ifdef MYMALLOC
61296642 26/* sbrk is limited to first heap segment so make it big */
9133bbab
NIS
27#pragma runopts(HEAP(8M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
28#else
29#pragma runopts(HEAP(2M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
30#endif
60e4866f
LJ
31#endif
32
4633a7c4 33
ecfc5424 34#include "EXTERN.h"
864dbfa3 35#define PERL_IN_MINIPERLMAIN_C
2304df62
AD
36#include "perl.h"
37
864dbfa3 38static void xs_init (pTHX);
a0d0e21e
LW
39static PerlInterpreter *my_perl;
40
61ae2fbf
JH
41#if defined (__MINT__) || defined (atarist)
42/* The Atari operating system doesn't have a dynamic stack. The
43 stack size is determined from this value. */
44long _stksize = 64 * 1024;
45#endif
46
27da23d5
JH
47#if defined(PERL_GLOBAL_STRUCT_PRIVATE)
48/* The static struct perl_vars* may seem counterproductive since the
49 * whole idea PERL_GLOBAL_STRUCT_PRIVATE was to avoid statics, but note
50 * that this static is not in the shared perl library, the globals PL_Vars
51 * and PL_VarsPtr will stay away. */
52static struct perl_vars* my_plvarsp;
53struct perl_vars* Perl_GetVarsPrivate(void) { return my_plvarsp; }
54#endif
55
c07a80fd 56int
91487cfc 57main(int argc, char **argv, char **env)
2304df62 58{
27da23d5 59 dVAR;
2304df62 60 int exitstatus;
27da23d5
JH
61#ifdef PERL_GLOBAL_STRUCT
62 struct perl_vars *plvarsp = init_global_struct();
63# ifdef PERL_GLOBAL_STRUCT_PRIVATE
64 my_vars = my_plvarsp = plvarsp;
65# endif
66#endif /* PERL_GLOBAL_STRUCT */
dd374669 67 (void)env;
50acdf95
MS
68#ifndef PERL_USE_SAFE_PUTENV
69 PL_use_safe_putenv = 0;
70#endif /* PERL_USE_SAFE_PUTENV */
2304df62 71
2c4f7f0e
DM
72 /* if user wants control of gprof profiling off by default */
73 /* noop unless Configure is given -Accflags=-DPERL_GPROF_CONTROL */
74 PERL_GPROF_MONCONTROL(0);
75
91487cfc 76 PERL_SYS_INIT3(&argc,&argv,&env);
4633a7c4 77
3db8f154 78#if defined(USE_ITHREADS)
52e18b1f
GS
79 /* XXX Ideally, this should really be happening in perl_alloc() or
80 * perl_construct() to keep libperl.a transparently fork()-safe.
81 * It is currently done here only because Apache/mod_perl have
82 * problems due to lack of a call to cancel pthread_atfork()
83 * handlers when shared objects that contain the handlers may
84 * be dlclose()d. This forces applications that embed perl to
85 * call PTHREAD_ATFORK() explicitly, but if and only if it hasn't
86 * been called at least once before in the current process.
87 * --GSAR 2001-07-20 */
98e467d9
DM
88 PTHREAD_ATFORK(Perl_atfork_lock,
89 Perl_atfork_unlock,
90 Perl_atfork_unlock);
91#endif
92
3280af22 93 if (!PL_do_undump) {
a0d0e21e
LW
94 my_perl = perl_alloc();
95 if (!my_perl)
96 exit(1);
642f9deb 97 perl_construct(my_perl);
3280af22 98 PL_perl_destruct_level = 0;
a0d0e21e 99 }
31d77e54 100 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
642f9deb 101 exitstatus = perl_parse(my_perl, xs_init, argc, argv, (char **)NULL);
8815fa0e 102 if (!exitstatus)
31d77e54 103 perl_run(my_perl);
8815fa0e
AB
104
105 exitstatus = perl_destruct(my_perl);
2304df62 106
642f9deb 107 perl_free(my_perl);
2304df62 108
27da23d5
JH
109#ifdef PERL_GLOBAL_STRUCT
110 free_global_struct(plvarsp);
111#endif /* PERL_GLOBAL_STRUCT */
112
a91be337 113 PERL_SYS_TERM();
114
642f9deb 115 exit(exitstatus);
4e35701f 116 return exitstatus;
2304df62
AD
117}
118
119/* Register any extra external extensions */
120
4633a7c4
LW
121/* Do not delete this line--writemain depends on it */
122
a0d0e21e 123static void
864dbfa3 124xs_init(pTHX)
2304df62 125{
642f9deb 126 dXSUB_SYS;
2304df62 127}
66610fdd
RGS
128
129/*
130 * Local variables:
131 * c-indentation-style: bsd
132 * c-basic-offset: 4
133 * indent-tabs-mode: t
134 * End:
135 *
37442d52
RGS
136 * ex: set ts=8 sts=4 sw=4 noet:
137 */