diff mbox series

[v2] scripts: bundle-libraries.sh: fix broken SDK compiler

Message ID 20201101172843.8904-1-ynezz@true.cz
State Accepted
Delegated to: Petr Štetiar
Headers show
Series [v2] scripts: bundle-libraries.sh: fix broken SDK compiler | expand

Commit Message

Petr Štetiar Nov. 1, 2020, 5:28 p.m. UTC
Recent versions (> 5.33) of `file` report liblto_plugin.so as
executable:

 $ file liblto_plugin.so
 liblto_plugin.so.0.0.0: ELF 64-bit LSB pie executable ...

Which then leads to improper packaging of the plugin, resulting in the
broken compiler:

 configure: checking whether the C compiler works
 mips-openwrt-linux-musl/bin/ld: liblto_plugin.so: error loading plugin: liblto_plugin.so: invalid ELF header

As the LTO compiler plugin library is incorrectly packaged as SDK
executable:

 $ head -1 ~/staging_dir/toolchain...libexec/gcc/.../liblto_plugin.so
 #!/usr/bin/env bash

Fix this by filtering out shared libraries from the bundling.

Ref: https://bugzilla.redhat.com/show_bug.cgi?id=1296868
Signed-off-by: Petr Štetiar <ynezz@true.cz>
---
 scripts/bundle-libraries.sh | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

changes since v1:

 - skipping the libraries instead of removing the execute bit (Jow)

Comments

Jo-Philipp Wich Nov. 1, 2020, 5:41 p.m. UTC | #1
Hi Petr,

> [...]  
> +should_be_patched() {
> +	local bin="$1"
> +
> +	[ -x "$bin" ] || return 1
> +
> +	case "$bin" in
> +		*.so|*.so.[0-9]*)
> +			return 1
> +		;;
> +	*)
> +		file "$bin" | grep -sqE "ELF.*(executable|interpreter)" && return 0

Apart from this apparently inconsistent indentation (tabs vs. spaces?) -
LGTM.

Assuming the white space is straightened out...
Acked-by: Jo-Philipp Wich <jo@mein.io>
diff mbox series

Patch

diff --git a/scripts/bundle-libraries.sh b/scripts/bundle-libraries.sh
index 9efcbbd0b20e..e9dd0dc442ac 100755
--- a/scripts/bundle-libraries.sh
+++ b/scripts/bundle-libraries.sh
@@ -125,6 +125,23 @@  _patch_glibc() {
 	fi
 }
 
+should_be_patched() {
+	local bin="$1"
+
+	[ -x "$bin" ] || return 1
+
+	case "$bin" in
+		*.so|*.so.[0-9]*)
+			return 1
+		;;
+	*)
+		file "$bin" | grep -sqE "ELF.*(executable|interpreter)" && return 0
+		;;
+	esac
+
+	return 1
+}
+
 for LDD in ${PATH//://ldd }/ldd; do
 	"$LDD" --version >/dev/null 2>/dev/null && break
 	LDD=""
@@ -150,7 +167,7 @@  for BIN in "$@"; do
 
 	LDSO=""
 
-	[ -n "$LDD" ] && [ -x "$BIN" ] && file "$BIN" | grep -sqE "ELF.*(executable|interpreter)" && {
+	[ -n "$LDD" ] && should_be_patched "$BIN" && {
 		for token in $("$LDD" "$BIN" 2>/dev/null); do
 			case "$token" in */*.so*)
 				dest="$DIR/lib/${token##*/}"