diff options
author | Martin Storsjö <martin@martin.st> | 2015-07-24 23:29:17 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-07-27 10:45:32 +0300 |
commit | 60a21b3d81c1a11cf5a08950eadd4e84ca2e597c (patch) | |
tree | 1f9e6ff6282c75de10a14fc047646691abfb2de4 | |
parent | 616b409c8f1e4fa568908212c01f6530da8d2e71 (diff) | |
download | ffmpeg-60a21b3d81c1a11cf5a08950eadd4e84ca2e597c.tar.gz |
configure: Check for _M_ARMT to detect thumb when using MSVC
Signed-off-by: Martin Storsjö <martin@martin.st>
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3996,6 +3996,7 @@ elif enabled alpha; then elif enabled arm; then + enabled msvc && check_cpp_condition stddef.h "defined _M_ARMT" && enable thumb check_cpp_condition stddef.h "defined __thumb__" && enable_weak thumb enabled thumb && check_cflags -mthumb || check_cflags -marm |