http://chromiumcodereview.appspot.com/10695114/diff/1/build/common.gypi File build/common.gypi (right):
http://chromiumcodereview.appspot.com/10695114/diff/1/build/common.gypi#newcode167 build/common.gypi:167: 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^Target: mips-" && echo "yes" || echo "no")', On 2012/07/07 12:34:37, Jakob wrote:
Is "^Target: mips-" the right pattern to match against, or does your cross-compiler identify itself differently? "Target: mipsel-" maybe?
The CodeSourcery toolchain returns "Target: mips-linux-gnu", but with the -EL flag, it builds little-endian code, so I think, that the pattern is correct. http://chromiumcodereview.appspot.com/10695114/diff/1/build/standalone.gypi File build/standalone.gypi (right): http://chromiumcodereview.appspot.com/10695114/diff/1/build/standalone.gypi#newcode49 build/standalone.gypi:49: s/x86_64/x64/;s/amd64/x64/;s/arm.*/arm/;s/mips.*/mips/")', On 2012/07/07 12:34:37, Jakob wrote:
missing update, the last replacement must be: s/mips.*/mipsel/
Thanks, done. http://chromiumcodereview.appspot.com/10695114/ -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
