diff options
author | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-28 17:39:15 +0000 |
---|---|---|
committer | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-28 17:39:15 +0000 |
commit | eb00e55cde26f7ab1994f373acaecdc6c5fdf880 (patch) | |
tree | 0e296527e984f03d733bdbf9031d556f5292b19a /libgfortran/caf | |
parent | fe5b308af648f24207ef1bba2234715ea416c5f1 (diff) | |
download | gcc-eb00e55cde26f7ab1994f373acaecdc6c5fdf880.tar.gz |
Add support for a minimal version of libgfortran for accelerator targets.
* Makefile.am (AM_CFLAGS): Add -DLIBGFOR_MINIMAL if LIBGFOR_MINIMAL.
(gfor_io_src, gfor_heper_src, gfor_src): Split into minimal and
always included sources.
* Makefile.in: Regenerate.
* configure.ac (LIBGFOR_MINIMAL): New AM_CONDITIONAL.
* configure: Regenerate.
* caf/single.c (caf_runtime_error): Don't print messages if
LIBGFOR_MINIMAL.
* runtime/compile_options.c (fatal_error_in_progress,
show_signal, backtrace_handler, maybe_find_addr2line): Guard with
!defined LIBGFOR_MINIMAL.
(set_options): Likewise for the backtrace code.
* runtime/minimal.c: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218170 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/caf')
-rw-r--r-- | libgfortran/caf/single.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgfortran/caf/single.c b/libgfortran/caf/single.c index e264fc50662..632d172cf9e 100644 --- a/libgfortran/caf/single.c +++ b/libgfortran/caf/single.c @@ -48,13 +48,14 @@ caf_static_t *caf_static_list = NULL; static void caf_runtime_error (const char *message, ...) { +#ifndef LIBGFOR_MINIMAL va_list ap; fprintf (stderr, "Fortran runtime error: "); va_start (ap, message); vfprintf (stderr, message, ap); va_end (ap); fprintf (stderr, "\n"); - +#endif /* FIXME: Shutdown the Fortran RTL to flush the buffer. PR 43849. */ exit (EXIT_FAILURE); } |