Makefile.in (FPBIT_FUNCS, [...]): Add _sf_to_usi _df_to_usi.
authorBrendan Kehoe <brendan@cygnus.com>
Wed, 8 Dec 1999 11:44:47 +0000 (11:44 +0000)
committerBrendan Kehoe <brendan@gcc.gnu.org>
Wed, 8 Dec 1999 11:44:47 +0000 (06:44 -0500)
    * Makefile.in (FPBIT_FUNCS, DPBIT_FUNCS): Add _sf_to_usi
    _df_to_usi.  Required by some targets, so US_SOFTWARE_GOFAST calls to
    functions like dptoul will be resolved.
    (libgcc2.a): Make sure that the object files from DPBIT are named
    differently (prefix `_dp') from those that would be coming from
    FPBIT.

From-SVN: r30828

gcc/ChangeLog
gcc/Makefile.in

index 25ee68e4bd4fbdc5c15713ab01d36d9047d0ead7..e8a7f4c9e69790e2b6646ad3623a15068b677715 100644 (file)
@@ -1,3 +1,12 @@
+1999-12-08  Brendan Kehoe  <brendan@cygnus.com>
+
+       * Makefile.in (FPBIT_FUNCS, DPBIT_FUNCS): Add _sf_to_usi
+       _df_to_usi.  Required by some targets, so US_SOFTWARE_GOFAST calls to
+       functions like dptoul will be resolved.
+       (libgcc2.a): Make sure that the object files from DPBIT are named
+       differently (prefix `_dp') from those that would be coming from
+       FPBIT.
+
 1999-12-08  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>,  Jakub Jelinek  <jakub@redhat.com>
 
        * configure.in: When target is sparc* and tm_file contains 64,
index 9ac6d32a99d176e454a3fbcf73c0e34b82b6ac60..6e63925c91a8e1d6c359a465cb6d14d892384cb6 100644 (file)
@@ -724,12 +724,12 @@ LIB2FUNCS_EH = _eh
 FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
     _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
     _lt_sf _le_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
-    _sf_to_df _thenan_sf
+    _sf_to_df _thenan_sf _sf_to_usi _df_to_usi
 
 DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
     _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
     _lt_df _le_df _si_to_df _df_to_si _negate_df _make_df \
-    _df_to_sf _thenan_df
+    _df_to_sf _thenan_df _sf_to_usi _df_to_usi
 
 # The files that "belong" in CONFIG_H are deliberately omitted
 # because having them there would not be useful in actual practice.
@@ -1088,10 +1088,10 @@ libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(FPBIT) $(DPBIT) $(LIB2ADD) \
          do \
            echo $${name}; \
            $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
-               -DFINE_GRAINED_LIBRARIES $(DPBIT) -o $${name}$(objext); \
+               -DFINE_GRAINED_LIBRARIES $(DPBIT) -o _dp$${name}$(objext); \
            if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
-           $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a $${name}$(objext); \
-           rm -f $${name}$(objext); \
+           $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a _dp$${name}$(objext); \
+           rm -f _dp$${name}$(objext); \
          done; \
        else true; fi;
 # Some shells crash when a loop has no items.