diff options
author | Martin Storsjö <martin@martin.st> | 2013-05-28 23:39:21 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-05-29 00:53:11 +0300 |
commit | 9f30fb5a773d59298d8d45c741b3fd971d84c97b (patch) | |
tree | a568e1f826b3d92b60ffb7e9297953e760d0df1c /configure | |
parent | bf20cdbd86b13d474babecfea13682cc7c9ff2c7 (diff) | |
download | ffmpeg-streaming-9f30fb5a773d59298d8d45c741b3fd971d84c97b.zip ffmpeg-streaming-9f30fb5a773d59298d8d45c741b3fd971d84c97b.tar.gz |
configure: Don't pass -mthumb or -march= to MSVC
The modern MSVC for ARM always builds for thumb, and it can't be
disabled.
Also just use the default arch instead of trying to map the -march
parameter to MSVC's -arch parameter (which only takes the values
ARMv7VE and VFPv4).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2354,6 +2354,8 @@ msvc_flags(){ -fno-common) ;; -fno-signed-zeros) ;; -fPIC) ;; + -mthumb) ;; + -march=*) ;; -lz) echo zlib.lib ;; -lavifil32) echo vfw32.lib ;; -lavicap32) echo vfw32.lib user32.lib ;; |