From 0956bc9b8373e7e0a7d1e00cf59811fb08aa2c20 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Wed, 28 Oct 2009 20:44:21 +0000 Subject: [PATCH] Enable hardcoded tables for ia64 shared builds. At least for cross-compilation with Gentoo gcc 4.4.2 it fixes the build errors due to GPREL 22 being insufficient for the .bss size of > 4 MB without it. Why these errors do not appear with static builds is unclear, it is not due to PIC (shared builds with PIC disabled show the same issue). Originally committed as revision 20409 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index b221bcc63c..12d91a4e72 100755 --- a/configure +++ b/configure @@ -1800,6 +1800,8 @@ case "$arch" in arch="ia64" enable fast_64bit spic=$shared + # HACK: currently fails to build if .bss is > 4MB and shared libs are built + enabled shared && enable hardcoded_tables ;; m68k) arch="m68k" -- 2.11.0