diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-06-16 23:10:46 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-06-16 23:10:46 +0000 |
commit | 08a561521f2dd3f82ecd380c5963c5d96fb53e37 (patch) | |
tree | 7158d834149291851e436386a9a4454e27d3817c /configure.in | |
parent | 897832ee2534a3ed45d08c205c4655df263a0c79 (diff) | |
download | gdb-08a561521f2dd3f82ecd380c5963c5d96fb53e37.zip gdb-08a561521f2dd3f82ecd380c5963c5d96fb53e37.tar.gz gdb-08a561521f2dd3f82ecd380c5963c5d96fb53e37.tar.bz2 |
* configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 81c9622..372c1e5 100644 --- a/configure.in +++ b/configure.in @@ -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 |