toolchain.eclass: drop prepstrip(), bug #587316
authorSergei Trofimovich <slyfox@gentoo.org>
Sun, 25 Nov 2018 15:11:06 +0000 (15:11 +0000)
committerSergei Trofimovich <slyfox@gentoo.org>
Sun, 25 Nov 2018 15:13:19 +0000 (15:13 +0000)
This disables all stripping in gcc. As PMS does
not provide an alternative just drop stripping
for now.

Reported-by: Michał Górny
Closes: https://bugs.gentoo.org/587316
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
eclass/toolchain.eclass

index 8a3203295348519b9a170e0295973d5bd5f707d3..3ad65af83a84259c832b1e86908fe36a6d9a91d2 100644 (file)
@@ -1828,14 +1828,15 @@ toolchain_src_install() {
                fi
        fi
 
-       # Now do the fun stripping stuff
-       env RESTRICT="" CHOST=${CHOST} prepstrip "${D}${BINPATH}"
-       is_crosscompile && \
-               env RESTRICT="" CHOST=${CHOST} prepstrip "${D}${HOSTLIBPATH}"
-       env RESTRICT="" CHOST=${CTARGET} prepstrip "${D}${LIBPATH}"
-       # gcc used to install helper binaries in lib/ but then moved to libexec/
-       [[ -d ${D}${PREFIX}/libexec/gcc ]] && \
-               env RESTRICT="" CHOST=${CHOST} prepstrip "${D}${PREFIX}/libexec/gcc/${CTARGET}/${GCC_CONFIG_VER}"
+       # TODO: implement stripping (we use RESTRICT=strip)
+       # As gcc installs object files both build against ${CHOST} and ${CTARGET}
+       # we will ned to run stripping using different tools:
+       # Using ${CHOST} tools:
+       #  - "${D}${BINPATH}"
+       #  - (for is_crosscompile) "${D}${HOSTLIBPATH}"
+       #  - "${D}${PREFIX}/libexec/gcc/${CTARGET}/${GCC_CONFIG_VER}"
+       # Using ${CTARGET} tools:
+       #  - "${D}${LIBPATH}"
 
        cd "${S}"
        if is_crosscompile; then