diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-27 13:20:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-27 13:20:12 +0200 |
commit | d06ea6e5ce51165c7c81677ab6827612173bf4f7 (patch) | |
tree | 2963b6a5fccd2ba9aaa7912302790ae419d68f7e | |
parent | 8324d427c21aa37e173983cb1ba12915b4d62a8d (diff) | |
parent | 60a21b3d81c1a11cf5a08950eadd4e84ca2e597c (diff) | |
download | ffmpeg-d06ea6e5ce51165c7c81677ab6827612173bf4f7.tar.gz |
Merge commit '60a21b3d81c1a11cf5a08950eadd4e84ca2e597c'
* commit '60a21b3d81c1a11cf5a08950eadd4e84ca2e597c':
configure: Check for _M_ARMT to detect thumb when using MSVC
Conflicts:
configure
Merged-by: Michael Niedermayer <michael@niedermayer.cc>
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4758,6 +4758,8 @@ 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__" && check_cc <<EOF && enable_weak thumb float func(float a, float b){ return a+b; } EOF |