* configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.

This commit is contained in:
Ian Lance Taylor 1997-06-16 23:10:46 +00:00
parent 897832ee25
commit 08a561521f
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
* configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
* configure: Set CFLAGS and CXXFLAGS, and substitute them into
Makefile. From Jeff Makey <jeff@cts.com>.
* Makefile.in: Add comment for CFLAGS and CXXFLAGS.

View File

@ -196,6 +196,7 @@ if [ x${shared} = xyes ]; then
hppa*) waugh=config/mh-papic ;;
i[3456]86-*) waugh=config/mh-x86pic ;;
sparc64-*) waugh=config/mh-sparcpic ;;
powerpc*-*) waugh=config/mh-ppcpic ;;
*) waugh=config/mh-${host_cpu}pic ;;
esac
if [ -f ${srcdir}/${waugh} ]; then
@ -790,7 +791,8 @@ fi
if [ x${shared} = xyes ]; then
case "${target}" in
hppa*) target_makefile_frag=config/mt-papic ;;
i[3456]86-*) target_makefile_frag=config/mt-x86pic ;;
i[3456]86-*) target_makefile_frag=config/mt-x86pic ;;
powerpc*-*) target_makefile_frag=config/mt-ppcpic ;;
*) target_makefile_frag=config/mt-${target_cpu}pic ;;
esac
fi