diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-07-22 20:06:27 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-07-22 20:06:27 +0200 |
commit | d7287c9b5f9ee24d43abdc22a27d1743d9ee4b56 (patch) | |
tree | b4ecbcd5fe01ae23e4a29df44cf9eb8fbeaa551b /scripts/build/libc | |
parent | a8fa17de9f24f6a2f05e6e1cb23a2ffb5100b0e5 (diff) | |
download | crosstool-ng-d7287c9b5f9ee24d43abdc22a27d1743d9ee4b56.tar.gz crosstool-ng-d7287c9b5f9ee24d43abdc22a27d1743d9ee4b56.tar.bz2 crosstool-ng-d7287c9b5f9ee24d43abdc22a27d1743d9ee4b56.zip |
libc/uClibc: do not install cross-ldd
I was unable to make the cross-ldd from uClibc to work, and
it is not possible to build it on non-POSIX system.
Besides, we have a generic script that is in the starting-blocks
to replace it, that will work for any C library, and also will
work on non-POSIX systems. Bonus!
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/uClibc.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh index 8f657a75..97cf2f27 100644 --- a/scripts/build/libc/uClibc.sh +++ b/scripts/build/libc/uClibc.sh @@ -222,17 +222,6 @@ do_libc() { ${CT_LIBC_UCLIBC_VERBOSITY} \ install - if [ "${CT_LIBC_UCLIBC_BUILD_CROSS_LDD}" = "y" ]; then - CT_DoLog EXTRA "Building C library cross-ldd" - CT_DoExecLog ALL \ - make PREFIX="${CT_SYSROOT_DIR}/" \ - ${CT_LIBC_UCLIBC_VERBOSITY} \ - -C utils hostutils - - CT_DoLog EXTRA "Installing C library cross-ldd" - CT_DoExecLog ALL install -m 0755 utils/ldd.host "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ldd" - fi - CT_EndStep } |