Reviewers: Jakob, danno, Paul Lind, kisg,

Description:
MIPS: Fix mipsel GYP build on Emdebian.

Emdebian's cross compiler identifies itself as
"Target: mipsel-linux-gnu"; modified pattern to
match this compiler too.

BUG=
TEST=


Please review this at https://chromiumcodereview.appspot.com/10810006/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M build/common.gypi


Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 523b56abe8e9ccf7186c496e1240c203d7e2d14a..2aeaff75947a71b8cf91ca8a745cc4d4371149b4 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -164,7 +164,7 @@
           'V8_TARGET_ARCH_MIPS',
         ],
         'variables': {
- 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^Target: mips-" && echo "yes" || echo "no")', + 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^Target: mips" && echo "yes" || echo "no")',
         },
         'conditions': [
           ['mipscompiler=="yes"', {


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to