[FFmpeg-devel] [PATCH]Force aix strip to work on 32 and 64 bit by default
Carl Eugen Hoyos
cehoyos at ag.or.at
Mon Jun 16 16:30:12 CEST 2014
Hi!
To quote the aix manual for strip:
> The default is to process 32-bit object files (ignore 64-bit objects).
I have no idea under what circumstances this behaviour makes sense.
Attached patch works around this problem.
Please comment, Carl Eugen
-------------- next part --------------
diff --git a/configure b/configure
index 39fe1fd..4f909a0 100755
--- a/configure
+++ b/configure
@@ -2627,6 +2627,7 @@ host_os=$target_os_default
# machine
if test "$target_os_default" = aix; then
arch_default=$(uname -p)
+ strip_default="strip -X32_64"
else
arch_default=$(uname -m)
fi
More information about the ffmpeg-devel
mailing list