1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

Merge commit '41df62fd674bd0c67f7b6952381d235a393245d6'

* commit '41df62fd674bd0c67f7b6952381d235a393245d6':
  configure: Set the default assembler to armasm64 for MSVC for arm64

Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2017-11-11 17:48:11 -03:00
commit 5fd3e6c3a6

3
configure vendored
View File

@ -3821,6 +3821,9 @@ case "$toolchain" in
nm_default="dumpbin -symbols"
ar_default="lib"
case "$arch" in
aarch64|arm64)
as_default="armasm64"
;;
arm*)
as_default="armasm"
;;