Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2008-07-30 19:03:57 +0400
committerPaolo Bonzini <pbonzini@redhat.com>2008-07-30 19:03:57 +0400
commit9ad2ea2fd901d31a7888c81d0270c5dd69abd2ce (patch)
tree9329154bfa38d02dd5d6feb913eb722ac75d53bb /config
parentd79a78e5c8d88fc7f38c396a3d25c376766c769a (diff)
2008-07-30 Paolo Bonzini <bonzini@gnu.org>
Sync with gcc: 2008-07-30 Paolo Bonzini <bonzini@gnu.org> * configure.ac: Add makefile fragments for hpux. * Makefile.def (flags_to_pass): Add ADA_CFLAGS. * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS. * configure: Regenerate. * Makefile.in: Regenerate. 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * Makefile.tpl ($(srcdir)/configure): Update dependencies. * Makefile.in: Regenerate. * configure: Regenerate. config: 2008-07-30 Paolo Bonzini <bonzini@gnu.org> * mh-pa: New, from gcc/config/pa/x-ada. * mh-pa-hpux10: New, from gcc/config/pa/x-ada-hpux10. 2008-06-11 Bernhard Fischer <aldot@gcc.gnu.org> * tls.m4: Fix typos.
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog11
-rw-r--r--config/mh-pa4
-rw-r--r--config/mh-pa-hpux104
-rw-r--r--config/tls.m42
4 files changed, 19 insertions, 2 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 0ec955dce..a35fe1467 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-30 Paolo Bonzini <bonzini@gnu.org>
+
+ * mh-pa: New, from gcc/config/pa/x-ada.
+ * mh-pa-hpux10: New, from gcc/config/pa/x-ada-hpux10.
+
2008-07-25 Keith Seitz <keiths@redhat.com>
* acinclude.m4: Remove libide, libgui, and all the other Tcl
@@ -21,10 +26,14 @@
version _GCC_AUTOCONF_VERSION throughout the tree.
(m4_wrap): New override, fix for Posix semantics of m4wrap.
+2008-06-11 Bernhard Fischer <aldot@gcc.gnu.org>
+
+ * tls.m4: Fix typos.
+
2008-06-08 Joseph Myers <joseph@codesourcery.com>
PR tree-optimization/36218
- * config/mh-mingw (LDFLAGS): Define.
+ * mh-mingw (LDFLAGS): Define.
2008-06-05 Danny Smith <dannysmith@users.sourceforge.net>
diff --git a/config/mh-pa b/config/mh-pa
new file mode 100644
index 000000000..b0005a25d
--- /dev/null
+++ b/config/mh-pa
@@ -0,0 +1,4 @@
+# The ada virtual array implementation requires that indexing be disabled on
+# hosts such as hpux that use a segmented memory architecture. Both the c
+# and ada files need to be compiled with this option for correct operation.
+ADA_CFLAGS = -mdisable-indexing
diff --git a/config/mh-pa-hpux10 b/config/mh-pa-hpux10
new file mode 100644
index 000000000..99a2278f2
--- /dev/null
+++ b/config/mh-pa-hpux10
@@ -0,0 +1,4 @@
+# The ada virtual array implementation requires that indexing be disabled on
+# hosts such as hpux that use a segmented memory architecture. Both the c
+# and ada files need to be compiled with this option for correct operation.
+ADA_CFLAGS = -mdisable-indexing -D_X_HPUX10
diff --git a/config/tls.m4 b/config/tls.m4
index b6c4c4a6a..acb123f69 100644
--- a/config/tls.m4
+++ b/config/tls.m4
@@ -77,7 +77,7 @@ AC_DEFUN([GCC_CHECK_TLS], [
dnl Check whether the target assembler supports TLS.
AC_DEFUN([GCC_CHECK_CC_TLS], [
GCC_ENABLE(tls, yes, [], [Use thread-local storage])
- AC_CACHE_CHECK([whether the target asssembler upports thread-local storage],
+ AC_CACHE_CHECK([whether the target assembler supports thread-local storage],
gcc_cv_have_cc_tls, [
AC_COMPILE_IFELSE([__thread int a; int b; int main() { return a = b; }],
[gcc_cv_have_cc_tls=yes], [gcc_cv_have_cc_tls=no])]