[FFmpeg-devel] [PATCH] Fix LIBTARGET within configure for dlltool
Kyle
kshawkeye at gmail.com
Mon Mar 21 20:56:21 CET 2011
Not sure if the last one sent right, here it is:
From 1593fc33d54340b7d918280aa0e5f8e27ac61657 Mon Sep 17 00:00:00 2001
From: Kyle Schwarz <kshawkeye at gmail.com>
Date: Mon, 21 Mar 2011 15:43:10 -0400
Subject: [PATCH] Fix .lib creation for w64 target.
dlltool needs i386:x86-64 instead of x64 to properly build .lib files.
---
configure | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure b/configure
index 42b5862..ae3634f 100755
--- a/configure
+++ b/configure
@@ -2422,7 +2422,7 @@ case $target_os in
LIBTARGET=i386
if enabled x86_64; then
enable malloc_aligned
- LIBTARGET=x64
+ LIBTARGET=i386:x86-64
elif enabled arm; then
LIBTARGET=arm
fi
--
1.7.1
More information about the ffmpeg-devel
mailing list