1 /* Copyright (C) 2002-2015 Free Software Foundation, Inc.
2 Contributed by Andy Vaught and Paul Brook <paul@nowt.org>
4 This file is part of the GNU Fortran runtime library (libgfortran).
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)
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.
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.
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/>. */
25 #include "libgfortran.h"
36 /* Stupid function to be sure the constructor is always linked in, even
37 in the case of static linking. See PR libfortran/22298 for details. */
39 stupid_function_name_for_static_linking (void)
44 /* This will be 0 for little-endian
45 machines and 1 for big-endian machines. */
49 /* Figure out endianness for this machine. */
52 determine_endianness (void)
66 runtime_error ("Unable to determine machine endianness");
71 static char **argv_save
;
73 static const char *exe_path
;
74 static bool please_free_exe_path_when_done
;
76 /* Save the path under which the program was called, for use in the
77 backtrace routines. */
79 store_exe_path (const char * argv0
)
82 #define DIR_SEPARATOR '/'
87 /* This can only happen if store_exe_path is called multiple times. */
88 if (please_free_exe_path_when_done
)
89 free ((char *) exe_path
);
91 /* Reading the /proc/self/exe symlink is Linux-specific(?), but if
92 it works it gives the correct answer. */
94 ssize_t len
, psize
= 256;
97 path
= xmalloc (psize
);
98 len
= readlink ("/proc/self/exe", path
, psize
);
104 else if (len
< psize
)
107 exe_path
= strdup (path
);
109 please_free_exe_path_when_done
= true;
112 /* The remaining option is len == psize. */
118 /* If the path is absolute or on a simulator where argv is not set. */
121 || ('A' <= argv0
[0] && argv0
[0] <= 'Z' && argv0
[1] == ':')
122 || ('a' <= argv0
[0] && argv0
[0] <= 'z' && argv0
[1] == ':')
123 || (argv0
[0] == '/' && argv0
[1] == '/')
124 || (argv0
[0] == '\\' && argv0
[1] == '\\'))
126 if (argv0
== NULL
|| argv0
[0] == DIR_SEPARATOR
)
130 please_free_exe_path_when_done
= false;
135 size_t cwdsize
= 256;
138 cwd
= xmalloc (cwdsize
);
139 if (getcwd (cwd
, cwdsize
))
141 else if (errno
== ERANGE
)
160 please_free_exe_path_when_done
= false;
164 /* exe_path will be cwd + "/" + argv[0] + "\0". This will not work
165 if the executable is not in the cwd, but at this point we're out
167 size_t pathlen
= strlen (cwd
) + 1 + strlen (argv0
) + 1;
168 path
= xmalloc (pathlen
);
169 snprintf (path
, pathlen
, "%s%c%s", cwd
, DIR_SEPARATOR
, argv0
);
172 please_free_exe_path_when_done
= true;
176 /* Return the full path of the executable. */
180 return (char *) exe_path
;
184 #ifndef HAVE_STRTOK_R
186 gfstrtok_r (char *str
, const char *delim
,
187 char **saveptr
__attribute__ ((unused
)))
189 return strtok (str
, delim
);
191 #define strtok_r gfstrtok_r
194 char *addr2line_path
;
196 /* Find addr2line and store the path. */
199 find_addr2line (void)
203 char *path
= secure_getenv ("PATH");
206 char *tp
= strdup (path
);
209 size_t n
= strlen (path
);
210 char *ap
= xmalloc (n
+ A2L_LEN
);
212 for (char *str
= tp
;; str
= NULL
)
214 char *token
= strtok_r (str
, ":", &saveptr
);
217 size_t toklen
= strlen (token
);
218 memcpy (ap
, token
, toklen
);
219 memcpy (ap
+ toklen
, "/addr2line", A2L_LEN
);
220 if (access (ap
, R_OK
|X_OK
) == 0)
222 addr2line_path
= strdup (ap
);
232 /* Set the saved values of the command line arguments. */
235 set_args (int argc
, char **argv
)
239 store_exe_path (argv
[0]);
244 /* Retrieve the saved values of the command line arguments. */
247 get_args (int *argc
, char ***argv
)
254 /* Initialize the runtime library. */
256 static void __attribute__((constructor
))
259 /* Figure out the machine endianness. */
260 determine_endianness ();
267 init_compile_options ();
270 /* Check for special command lines. */
272 if (argc
> 1 && strcmp (argv
[1], "--help") == 0)
275 /* if (argc > 1 && strcmp(argv[1], "--resume") == 0) resume(); */
278 if (options
.backtrace
== 1)
281 random_seed_i4 (NULL
, NULL
, NULL
);
285 /* Cleanup the runtime library. */
287 static void __attribute__((destructor
))
292 if (please_free_exe_path_when_done
)
293 free ((char *) exe_path
);
295 free (addr2line_path
);