diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/ChangeLog | 5 | ||||
-rw-r--r-- | config/mh-pa | 4 | ||||
-rw-r--r-- | config/mh-pa-hpux10 | 4 |
3 files changed, 13 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index e64c1cab72e..6178044155f 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-11 Joseph Myers <joseph@codesourcery.com> * mh-mingw (LDFLAGS): Append to rather than replacing previous diff --git a/config/mh-pa b/config/mh-pa new file mode 100644 index 00000000000..b0005a25d4d --- /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 00000000000..99a2278f281 --- /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 |