Module: libav Branch: master Commit: 60a21b3d81c1a11cf5a08950eadd4e84ca2e597c
Author: Martin Storsjö <[email protected]> Committer: Martin Storsjö <[email protected]> Date: Fri Jul 24 23:29:17 2015 +0300 configure: Check for _M_ARMT to detect thumb when using MSVC Signed-off-by: Martin Storsjö <[email protected]> --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 291247a..88c167f 100755 --- a/configure +++ b/configure @@ -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 _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
