[FFmpeg-cvslog] configure: add --toolchain option
Mans Rullgard
git at videolan.org
Wed Sep 19 15:29:33 CEST 2012
ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sun Sep 16 22:06:53 2012 +0100| [aeeb782c2ab6be783f7658dfccf11fa89b33566c] | committer: Mans Rullgard
configure: add --toolchain option
This allows creating canned shorthands for common combinations
of cc, ld etc.
Signed-off-by: Mans Rullgard <mans at mansr.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=aeeb782c2ab6be783f7658dfccf11fa89b33566c
---
configure | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/configure b/configure
index 74dbb6c..2d400c0 100755
--- a/configure
+++ b/configure
@@ -205,6 +205,7 @@ Advanced options (experts only):
--target-os=OS compiler targets OS [$target_os]
--target-exec=CMD command to run executables on target
--target-path=DIR path to view of build directory on target
+ --toolchain=NAME set tool defaults according to NAME
--nm=NM use nm tool
--ar=AR use archive tool AR [$ar_default]
--as=AS use assembler AS [$as_default]
@@ -1327,6 +1328,7 @@ CMDLINE_SET="
target_exec
target_os
target_path
+ toolchain
"
CMDLINE_APPEND="
@@ -2038,6 +2040,17 @@ ranlib="${cross_prefix}${ranlib}"
sysinclude_default="${sysroot}/usr/include"
+case "$toolchain" in
+ msvc)
+ cc_default="c99wrap cl"
+ ld_default="c99wrap link"
+ nm_default="dumpbin -symbols"
+ ;;
+ ?*)
+ die "Unknown toolchain $toolchain"
+ ;;
+esac
+
set_default cc pkg_config sysinclude
enabled cross_compile || host_cc_default=$cc
set_default host_cc
More information about the ffmpeg-cvslog
mailing list