diff options
author | Mans Rullgard <mans@mansr.com> | 2011-06-23 15:42:19 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-06-23 16:55:36 +0100 |
commit | 9e19704a6a04786f65478b9e9aeb470c6d1e277c (patch) | |
tree | b3a4d4dd5f77f13910d897794de52b5fcadb7bce /configure | |
parent | 35fa0d47585cef28cd8191dccf0607d90c7667a6 (diff) | |
download | ffmpeg-9e19704a6a04786f65478b9e9aeb470c6d1e277c.tar.gz |
ARM: enable thumb for Cortex-M* CPUs
These CPUs are thumb-only and thus require this option.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2270,7 +2270,7 @@ elif enabled arm; then case $cpu in cortex-a*) subarch=armv7a ;; cortex-r*) subarch=armv7r ;; - cortex-m*) subarch=armv7m ;; + cortex-m*) enable thumb; subarch=armv7m ;; arm11*) subarch=armv6 ;; arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;; armv4*|arm7*|arm9[24]*) subarch=armv4 ;; |