| Index: Makefile
|
| diff --git a/Makefile b/Makefile
|
| index d0cfd8139106c867758e577d46505f09a3bc0bc2..b963089bb229b02aa06970b05c83cf9d4b009873 100644
|
| --- a/Makefile
|
| +++ b/Makefile
|
| @@ -118,7 +118,7 @@ endif
|
|
|
| # Architectures and modes to be compiled. Consider these to be internal
|
| # variables, don't override them (use the targets instead).
|
| -ARCHES = ia32 x64 arm mips
|
| +ARCHES = ia32 x64 arm mipsel
|
| DEFAULT_ARCHES = ia32 x64 arm
|
| MODES = release debug
|
| ANDROID_MODES = android.release android.debug
|
| @@ -149,6 +149,10 @@ buildbot:
|
| $(MAKE) -C "$(OUTDIR)" BUILDTYPE=$(BUILDTYPE) \
|
| builddir="$(abspath $(OUTDIR))/$(BUILDTYPE)"
|
|
|
| +mips mips.release mips.debug:
|
| + @echo "V8 does not support big-endian MIPS builds at the moment," \
|
| + "please use little-endian builds (mipsel)."
|
| +
|
| # Compile targets. MODES and ARCHES are convenience targets.
|
| .SECONDEXPANSION:
|
| $(MODES): $(addsuffix .$$@,$(DEFAULT_ARCHES))
|
|
|