diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-26 11:40:14 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-26 11:40:14 +0000 |
commit | c368d8b9f7b624b759eacb9d8f23fb44710db2f6 (patch) | |
tree | 0ebab37ab1bf73985757ede536c751b727d824c9 /sysdeps/sh/Makefile | |
parent | ffa8d2a098d6dd46ba661e4ef0241974bdbc5faf (diff) | |
download | glibc-c368d8b9f7b624b759eacb9d8f23fb44710db2f6.tar.gz glibc-c368d8b9f7b624b759eacb9d8f23fb44710db2f6.tar.xz glibc-c368d8b9f7b624b759eacb9d8f23fb44710db2f6.zip |
2002-08-26 Kaz Kojima <kkojima@rr.iij4u.or.jp>
* sysdeps/sh/Makefile (sysdeps_routines): Add divdi3 in csu dir. (shared-only-routines): Likewise.
Diffstat (limited to 'sysdeps/sh/Makefile')
-rw-r--r-- | sysdeps/sh/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysdeps/sh/Makefile b/sysdeps/sh/Makefile index cf18dedc45..6d8c56f3ed 100644 --- a/sysdeps/sh/Makefile +++ b/sysdeps/sh/Makefile @@ -1,3 +1,11 @@ ifeq ($(subdir),gmon) sysdep_routines += _mcount endif + +ifeq ($(subdir),csu) +ifeq (yes,$(build-shared)) +# Compatibility +sysdep_routines += divdi3 +shared-only-routines += divdi3 +endif +endif |