From 03a3f6027d28c77bcc469d1943f3111dc35c34fa Mon Sep 17 00:00:00 2001 From: Wildan M Date: Mon, 6 Oct 2025 12:44:20 +0700 Subject: [PATCH] Fix stripcore.sh for multi arch --- stripcore.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stripcore.sh b/stripcore.sh index 3808722529..e711ea6409 100755 --- a/stripcore.sh +++ b/stripcore.sh @@ -11,7 +11,7 @@ if [ -z "$target" ]; then exit 1 fi -for sym in cbrtf ceilf copysignf fabsf fdimf floorf fmaxf fminf fmofd rintf roundf sqrtf truncf \ +for sym in cbrtf ceilf copysignf fabsf fdimf floorf fmaf fmaxf fminf fmodf rintf roundf sqrtf truncf \ cbrt ceil copysign fabs fdim floor fmax fmin fmod rint round sqrt trunc; do \ - objcopy --globalize-symbol=$sym --strip-symbol=$sym "$target"; \ + "$OBJCOPY" --globalize-symbol=$sym --strip-symbol=$sym "$target"; \ done