Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
de6ddefa
Commit
de6ddefa
authored
Jul 20, 2012
by
Dragan Mrdjan
Browse files
Disabling MIPS optimizations for big endian platforms
Change-Id: Idae399ecbd10e287ef30b2e0b95822dc9175ce0a
parent
f31c4008
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/make/configure.sh
View file @
de6ddefa
...
...
@@ -1149,6 +1149,18 @@ EOF
esac
fi
# only for MIPS platforms
case
$(
toolchain
)
in
mips
*
)
if
enabled dspr2
;
then
if
enabled big_endian
;
then
echo
"dspr2 optimizations are available only for little endian platforms"
disable dspr2
fi
fi
;;
esac
# for sysconf(3) and friends.
check_header unistd.h
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment