mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-02 05:56:46 +08:00
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
This commit is contained in:
19
configure
vendored
19
configure
vendored
@ -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
|
|||||||
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)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
Reference in New Issue
Block a user