Commit aa19e120 authored by petarj@mips.com's avatar petarj@mips.com

[MIPS] Let python_arch script recognize MIPS arch.

The script has to be aware of MIPS arch, so it can figure out that the libary
is for MIPS.

BUG= https://code.google.com/p/chromium/issues/detail?id=130022
TEST=make chrome


Review URL: https://chromiumcodereview.appspot.com/11819009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175689 0039d316-1c4b-4281-b951-d872f2087c98
parent 5c726aec
...@@ -27,6 +27,12 @@ if [ $? -eq 0 ]; then ...@@ -27,6 +27,12 @@ if [ $? -eq 0 ]; then
exit 0 exit 0
fi fi
echo $file_out | grep -qs "MIPS"
if [ $? -eq 0 ]; then
echo mipsel
exit 0
fi
echo $file_out | grep -qs "x86-64" echo $file_out | grep -qs "x86-64"
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo x64 echo x64
......
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