(root)/
gcc-13.2.0/
libgfortran/
runtime/
main.c
       1  /* Copyright (C) 2002-2023 Free Software Foundation, Inc.
       2     Contributed by Andy Vaught and Paul Brook <paul@nowt.org>
       3  
       4  This file is part of the GNU Fortran runtime library (libgfortran).
       5  
       6  Libgfortran is free software; you can redistribute it and/or modify
       7  it under the terms of the GNU General Public License as published by
       8  the Free Software Foundation; either version 3, or (at your option)
       9  any later version.
      10  
      11  Libgfortran is distributed in the hope that it will be useful,
      12  but WITHOUT ANY WARRANTY; without even the implied warranty of
      13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      14  GNU General Public License for more details.
      15  
      16  Under Section 7 of GPL version 3, you are granted additional
      17  permissions described in the GCC Runtime Library Exception, version
      18  3.1, as published by the Free Software Foundation.
      19  
      20  You should have received a copy of the GNU General Public License and
      21  a copy of the GCC Runtime Library Exception along with this program;
      22  see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
      23  <http://www.gnu.org/licenses/>.  */
      24  
      25  #include "libgfortran.h"
      26  
      27  
      28  /* Stupid function to be sure the constructor is always linked in, even
      29     in the case of static linking.  See PR libfortran/22298 for details.  */
      30  void
      31  stupid_function_name_for_static_linking (void)
      32  {
      33    return;
      34  }
      35  
      36  
      37  static int argc_save;
      38  static char **argv_save;
      39  
      40  
      41  /* Set the saved values of the command line arguments.  */
      42  
      43  void
      44  set_args (int argc, char **argv)
      45  {
      46    argc_save = argc;
      47    argv_save = argv;
      48  }
      49  iexport(set_args);
      50  
      51  
      52  /* Retrieve the saved values of the command line arguments.  */
      53  
      54  void
      55  get_args (int *argc, char ***argv)
      56  {
      57    *argc = argc_save;
      58    *argv = argv_save;
      59  }
      60  
      61  
      62  /* Initialize the runtime library.  */
      63  
      64  static void __attribute__((constructor))
      65  init (void)
      66  {
      67    /* Must be first */
      68    init_variables ();
      69  
      70    init_units ();
      71  
      72    /* If (and only if) the user asked for it, set up the FPU state.  */
      73    if (options.fpe != 0)
      74      set_fpu ();
      75  
      76    init_compile_options ();
      77  }
      78  
      79  
      80  /* Cleanup the runtime library.  */
      81  
      82  static void __attribute__((destructor))
      83  cleanup (void)
      84  {
      85    close_units ();
      86  }