summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-10-28 20:44:21 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-10-28 20:44:21 +0000
commit0956bc9b8373e7e0a7d1e00cf59811fb08aa2c20 (patch)
treef800ace6d512122a22516d6124f15355eb67a991
parentf0125de9d12dcae05a6eefee04c10bef327de288 (diff)
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
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
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"