aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/ChangeLog
diff options
context:
space:
mode:
authorBernd Schmidt <bernds@codesourcery.com>2014-11-28 17:39:15 +0000
committerBernd Schmidt <bernds@gcc.gnu.org>2014-11-28 17:39:15 +0000
commitee95f9288a029478f1fbf9741db51855ac9a552b (patch)
tree0e296527e984f03d733bdbf9031d556f5292b19a /libgfortran/ChangeLog
parent8760be8546edd0941c1d62dd47e5130fae5df953 (diff)
downloadgcc-ee95f9288a029478f1fbf9741db51855ac9a552b.zip
gcc-ee95f9288a029478f1fbf9741db51855ac9a552b.tar.gz
gcc-ee95f9288a029478f1fbf9741db51855ac9a552b.tar.bz2
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. From-SVN: r218170
Diffstat (limited to 'libgfortran/ChangeLog')
-rw-r--r--libgfortran/ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 367eb53..24ad58e 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,19 @@
+2014-11-28 Bernd Schmidt <bernds@codesourcery.com>
+
+ * 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.
+
2014-11-25 Uros Bizjak <ubizjak@gmail.com>
* intrinsics/env.c (getenv): Remove unused variable res_len.