Skip to content

Commit b2d0ba9

Browse files
committed
Remove unused target
1 parent 0fd764b commit b2d0ba9

File tree

1 file changed

+0
-52
lines changed

1 file changed

+0
-52
lines changed

build_scripts/build_ffmpeg.sh

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -409,48 +409,12 @@ cp $PREFIX/bin/ffmpeg $DESTINATION_FOLDER/lite/
409409
popd
410410
}
411411

412-
if [ $TARGET == 'arm-v5te' ]; then
413-
#arm v5te
414-
CPU=armv5te
415-
ARCH=arm
416-
OPTIMIZE_CFLAGS="-marm -march=$CPU -Os -O3"
417-
ADDITIONAL_CONFIGURE_FLAG=
418-
build_one
419-
elif [ $TARGET == 'arm-v6' ]; then
420-
#arm v6
421-
CPU=armv6
422-
ARCH=arm
423-
OPTIMIZE_CFLAGS="-marm -march=$CPU -Os -O3"
424-
ADDITIONAL_CONFIGURE_FLAG=
425-
build_one
426-
elif [ $TARGET == 'arm-v7vfpv3' ]; then
427-
#arm v7vfpv3
428-
CPU=armv7-a
429-
ARCH=arm
430-
OPTIMIZE_CFLAGS="-mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -march=$CPU -Os -O3 "
431-
ADDITIONAL_CONFIGURE_FLAG=
432-
build_one
433-
elif [ $TARGET == 'arm-v7vfp' ]; then
434-
#arm v7vfp
435-
CPU=armv7-a
436-
ARCH=arm
437-
OPTIMIZE_CFLAGS="-mfloat-abi=softfp -mfpu=vfp -marm -march=$CPU -Os -O3 "
438-
ADDITIONAL_CONFIGURE_FLAG=
439-
build_one
440-
elif [ $TARGET == 'arm-v7n' ]; then
441412
#arm v7n
442413
CPU=armv7-a
443414
ARCH=arm
444415
OPTIMIZE_CFLAGS="-mfloat-abi=softfp -mfpu=neon -marm -mtune=cortex-a8 -march=$CPU -Os -O3"
445416
ADDITIONAL_CONFIGURE_FLAG=--enable-neon
446417
build_one
447-
elif [ $TARGET == 'arm-v6+vfp' ]; then
448-
#arm v6+vfp
449-
CPU=armv6
450-
ARCH=arm
451-
OPTIMIZE_CFLAGS="-DCMP_HAVE_VFP -mfloat-abi=softfp -mfpu=vfp -marm -march=$CPU -Os -O3"
452-
ADDITIONAL_CONFIGURE_FLAG=
453-
build_one
454418
elif [ $TARGET == 'arm64-v8a' ]; then
455419
#arm64-v8a
456420
CPU=armv8-a
@@ -473,22 +437,6 @@ elif [ $TARGET == 'i686' ]; then
473437
# disable asm to fix
474438
ADDITIONAL_CONFIGURE_FLAG=' --disable-asm '
475439
build_one
476-
elif [ $TARGET == 'mips' ]; then
477-
#mips
478-
CPU=mips32
479-
ARCH=mips
480-
OPTIMIZE_CFLAGS="-march=$CPU -Os -O3"
481-
#"-std=c99 -O3 -Wall -pipe -fpic -fasm -ftree-vectorize -ffunction-sections -funwind-tables -fomit-frame-pointer -funswitch-loops -finline-limit=300 -finline-functions -fpredictive-commoning -fgcse-after-reload -fipa-cp-clone -Wno-psabi -Wa,--noexecstack"
482-
ADDITIONAL_CONFIGURE_FLAG=
483-
build_one
484-
elif [ $TARGET == 'mips64' ]; then
485-
#mips
486-
CPU=mips64r6
487-
ARCH=mips64
488-
OPTIMIZE_CFLAGS="-march=$CPU -Os -O3"
489-
#"-std=c99 -O3 -Wall -pipe -fpic -fasm -ftree-vectorize -ffunction-sections -funwind-tables -fomit-frame-pointer -funswitch-loops -finline-limit=300 -finline-functions -fpredictive-commoning -fgcse-after-reload -fipa-cp-clone -Wno-psabi -Wa,--noexecstack"
490-
ADDITIONAL_CONFIGURE_FLAG=
491-
build_one
492440
elif [ $TARGET == 'armv7-a' ]; then
493441
# armv7-a
494442
CPU=armv7-a

0 commit comments

Comments
 (0)