mklibgcc.in: Prefer LIB1ASMFUNCS over LIB2_DIVMOD_FUNCS when generating libgcc.a.
* mklibgcc.in: Prefer LIB1ASMFUNCS over LIB2_DIVMOD_FUNCS when generating libgcc.a. From-SVN: r45005
This commit is contained in:
parent
1c0cc57e79
commit
9e23c02d4f
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-08-18 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
|
||||
|
||||
* mklibgcc.in: Prefer LIB1ASMFUNCS over LIB2_DIVMOD_FUNCS when
|
||||
generating libgcc.a.
|
||||
|
||||
2001-08-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* except.c (TYPE_HASH): Delete.
|
||||
|
|
|
@ -79,11 +79,14 @@ for name in $LIB1ASMFUNCS; do
|
|||
echo " $gcc_compile" $flags -DL$name -xassembler-with-cpp \
|
||||
-c '$(srcdir)/config/$(LIB1ASMSRC)' -o $out
|
||||
|
||||
# Remove any objects from LIB2FUNCS that are defined as optimized
|
||||
# assembly code in LIB1ASMFUNCS.
|
||||
# Remove any objects from LIB2FUNCS and LIB2_DIVMOD_FUNCS that are
|
||||
# defined as optimized assembly code in LIB1ASMFUNCS.
|
||||
LIB2FUNCS=`echo $LIB2FUNCS | sed -e 's/^'$name' //' \
|
||||
-e 's/ '$name' / /' \
|
||||
-e 's/ '$name'$//'`
|
||||
LIB2_DIVMOD_FUNCS=`echo $LIB2_DIVMOD_FUNCS | sed -e 's/^'$name' //' \
|
||||
-e 's/ '$name' / /' \
|
||||
-e 's/ '$name'$//'`
|
||||
done
|
||||
libgcc1_objs="$libgcc1_objs ${name}${objext}"
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue