summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorShivraj Patil <shivraj.patil@imgtec.com>2016-08-05 13:42:44 +0530
committerMichael Niedermayer <michael@niedermayer.cc>2016-08-05 11:41:46 +0200
commit6803a298f4338c19c3032d2417c6e857eb6d95be (patch)
tree30f21b9d65daea63b2e4d6bd3a1f383f91b61ddb /configure
parent1fb8f6b75cb82607401852d9f0ac0e3f10b183b1 (diff)
Support for MIPS cpu P6600
Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index 9f5b31f5f2..8e30c68615 100755
--- a/configure
+++ b/configure
@@ -4346,7 +4346,7 @@ elif enabled mips; then
enable mips32r2
disable msa
;;
- p5600|i6400)
+ p5600|i6400|p6600)
disable mipsdsp
disable mipsdspr2
;;
@@ -4411,6 +4411,10 @@ elif enabled mips; then
enable mips64r6
check_cflags "-mtune=i6400 -mabi=64" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops" && check_ldflags "-mabi=64"
;;
+ p6600)
+ enable mips64r6
+ check_cflags "-mtune=p6600 -mabi=64" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops" && check_ldflags "-mabi=64"
+ ;;
esac
else
# We do not disable anything. Is up to the user to disable the unwanted features.