diff options
author | Martin Storsjö <martin@martin.st> | 2015-07-24 23:23:29 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-07-27 10:45:08 +0300 |
commit | 2192ff84dd720968108bc1ca54e239f4c94eb61d (patch) | |
tree | c442229a723f9e51fdf6676eb27578082bf74a1d | |
parent | e4015b00d4e9e40dc1693a018edd51bf7a04993e (diff) | |
download | ffmpeg-2192ff84dd720968108bc1ca54e239f4c94eb61d.tar.gz |
configure: Default to armasm for --toolchain=msvc when targeting arm
Signed-off-by: Martin Storsjö <martin@martin.st>
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2642,6 +2642,11 @@ case "$toolchain" in ld_default="$source_path/compat/windows/mslink" nm_default="dumpbin -symbols" ar_default="lib" + case "$arch" in + arm*) + as_default="armasm" + ;; + esac target_os_default="win32" # Use a relative path for TMPDIR. This makes sure all the # ffconf temp files are written with a relative path, avoiding |