Merge egcs-19981008.

This commit is contained in:
Jeff Law 1998-10-09 21:10:04 +00:00
parent 710c8d2fad
commit 734fb33c30
4 changed files with 7 additions and 2 deletions

View File

@ -44,6 +44,7 @@ Things-to-keep:
ChangeLog
mh-a68bsd
mh-aix386
mh-aix43
mh-apollo68
mh-cxux
mh-cygwin32

4
config/mh-aix43 Normal file
View File

@ -0,0 +1,4 @@
# AIX 4.3 and above requires -X32_64 flag to all ar and nm commands
# to handle both 32-bit and 64-bit objects.
AR_FOR_TARGET=ar -X32_64
NM_FOR_TARGET=nm -X32_64

View File

@ -1,2 +1,2 @@
# When using glibc 2 on Linux we must always use vtable thunks.
CXXFLAGS_FOR_TARGET = $(CXXFLAGS) -fvtable-thunks
CXXFLAGS_FOR_TARGET = $(CXXFLAGS) -fvtable-thunks -D_GNU_SOURCE

View File

@ -1 +1 @@
PICFLAG_FOR_TARGET=-fPIC
PICFLAG_FOR_TARGET=`case "${LIBCFLAGS} ${LIBCXXFLAGS}" in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`