32 lines
849 B
Diff
32 lines
849 B
Diff
# HG changeset patch
|
|
# User Mike Hommey <mh+mozilla@glandium.org>
|
|
# Date 1303461188 -7200
|
|
# Node ID 59771590e9203d48ef8cbcd7eaf2f8ae45dbb1c1
|
|
# Parent c4b82ec27d6d6e1c02ef0abb3b6e805bfdd092ec
|
|
Bug 638056 - Avoid "The cacheFlush support is missing on this platform" error on exotic platforms. r=cdleary
|
|
|
|
diff --git a/js/src/Makefile.in b/js/src/Makefile.in
|
|
--- a/js/src/Makefile.in
|
|
+++ b/js/src/Makefile.in
|
|
@@ -383,17 +383,17 @@ CPPSRCS += checks.cc \
|
|
platform.cc \
|
|
utils.cc \
|
|
$(NONE)
|
|
|
|
#
|
|
# END enclude sources for V8 dtoa
|
|
#############################################
|
|
|
|
-ifeq (,$(filter-out powerpc sparc,$(TARGET_CPU)))
|
|
+ifeq (,$(filter arm %86 x86_64,$(TARGET_CPU)))
|
|
|
|
VPATH += $(srcdir)/assembler \
|
|
$(srcdir)/assembler/wtf \
|
|
$(srcdir)/yarr/pcre \
|
|
$(NULL)
|
|
|
|
CPPSRCS += pcre_compile.cpp \
|
|
pcre_exec.cpp \
|
|
|
|
|