diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2004-12-18 16:43:38 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2004-12-18 08:43:38 -0800 |
commit | 207db768e9f789aa5ae05d5ab896410c38cd2208 (patch) | |
tree | 678a333ec82bb203284379d3442639aaa13e6db8 /libiberty/config.table | |
parent | 4fb735e4bff30d180a4cfe05582d9f5c1fa8db7a (diff) | |
download | gcc-207db768e9f789aa5ae05d5ab896410c38cd2208.tar.gz |
Makefile.in (top_builddir): Set to `.'.
2004-12-18 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.in (top_builddir): Set to `.'.
(OUTPUT_OPTION): Removed.
(LIBTOOL): New.
(LTLIBOBJS): New.
(EXTRA_LTOFILES): New.
(FLAGS_TO_PASS): Add EXTRA_LTOFILES.
(all): Remove stamp-picdir.
(LTCOMPILE): New.
(.c.lo): New rule.
(REQUIRED_LTOFILES): New.
(CONFIGURED_LTOFILES): New.
($(TARGETLIB)): Check .libs for PIC object files. Depend on
$(REQUIRED_LTOFILES) $(EXTRA_LTOFILES) $(LTLIBOBJS).
(stamp-picdir): Completely removed.
(maint-missing): Pass $(REQUIRED_LTOFILES)
$(CONFIGURED_LTOFILES) instead of (REQUIRED_OFILES)
$(CONFIGURED_OFILES)
(maint-buildall): Depend on $(REQUIRED_LTOFILES)
$(CONFIGURED_LTOFILES).
(mostlyclean): Also remove *.lo .libs.
Run "make maint-deps".
* aclocal.m4: Include ../libtool.m4.
* config.table: Don't check --enable-shared.
* configure.ac (AC_PROG_LIBTOOL): Add.
(AC_PROG_CC_C_O): Removed.
(OUTPUT_OPTION): Removed.
(NO_MINUS_C_MINUS_O): Removed.
(ltpexecute): New substitute.
(LIBOBJS): Cleanup.
* configure: Regenerated.
* maint-tool: Updated for .lo/libtool.
From-SVN: r92353
Diffstat (limited to 'libiberty/config.table')
-rw-r--r-- | libiberty/config.table | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/libiberty/config.table b/libiberty/config.table index 1867cfeaafa..ff548439cd1 100644 --- a/libiberty/config.table +++ b/libiberty/config.table @@ -20,33 +20,6 @@ else frags= fi -# If they didn't specify --enable-shared, don't generate shared libs. -case "${enable_shared}" in - yes) shared=yes ;; - no) shared=no ;; - "") shared=no ;; - *) shared=yes ;; -esac -if [ "${shared}" = "yes" ]; then - frag= - case "${host}" in - *-*-cygwin*) ;; - alpha*-*-linux*) frag=mh-elfalphapic ;; - arm*-*-*) frag=mh-armpic ;; - hppa*-*-*) frag=mh-papic ;; - i[34567]86-*-* | x86_64-*-*) - frag=mh-x86pic ;; - powerpc*-*-aix*) ;; - powerpc*-*-*) frag=mh-ppcpic ;; - sparc*-*-*) frag=mh-sparcpic ;; - s390*-*-*) frag=mh-s390pic ;; - *) frag=mh-${host_cpu}pic ;; - esac - if [ -n "${frag}" ]; then - frags="${frags} ${libiberty_topdir}/config/${frag}" - fi -fi - echo "# Warning: this fragment is automatically generated" > temp-frag for frag in ${frags}; do |