Commit fdcd782d authored by Måns Rullgård's avatar Måns Rullgård

configure: add AVR32 names for --cpu flag

Recognise AVR32 processor names as well as the generic "ap" and "uc"
family names as values for --cpu.  Also define two subtypes, avr32_ap
and avr32_uc.

Originally committed as revision 19663 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8ba939d7
...@@ -865,6 +865,9 @@ THREADS_LIST=' ...@@ -865,6 +865,9 @@ THREADS_LIST='
ARCH_LIST=' ARCH_LIST='
alpha alpha
arm arm
avr32
avr32_ap
avr32_uc
bfin bfin
ia64 ia64
m68k m68k
...@@ -1687,6 +1690,22 @@ case $cpu in ...@@ -1687,6 +1690,22 @@ case $cpu in
mips*|[45]k*|[237]4k*|m4k|r*000|loongson2[ef]) mips*|[45]k*|[237]4k*|m4k|r*000|loongson2[ef])
cpuflags="-march=$cpu" cpuflags="-march=$cpu"
;; ;;
ap7[02]0[0-2])
subarch="avr32_ap"
cpuflags="-mpart=$cpu"
;;
ap)
subarch="avr32_ap"
cpuflags="-march=$cpu"
;;
uc3[ab]*)
subarch="avr32_uc"
cpuflags="-mcpu=$cpu"
;;
uc)
subarch="avr32_uc"
cpuflags="-march=$cpu"
;;
generic) generic)
;; ;;
*) *)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment