Skip to content
Snippets Groups Projects
Commit c4d0146b authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Ah, found the problem...

It looks like "armv7l" didn't exist when this version of Spidermoney
was released.  Just expand a previous patch to include all arm*
architectures.
parent 6afeb1e6
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4452 failed
......@@ -36,9 +36,6 @@ ifneq ($(os),darwin)
endif
endif
# Blacklist some machines...
ifeq ($(machine_uname),armv7l)
JS_CONFIGURE_ARGS += '--disable-tracejit'
endif
JS_CONFIGURE_ENV += 'CXXFLAGS=$(CXXFLAGS)'
......
......@@ -5,7 +5,7 @@
#############################################
-ifeq (,$(filter-out powerpc sparc,$(TARGET_CPU)))
+ifeq (,$(filter arm %86 x86_64,$(TARGET_CPU)))
+ifeq (,$(filter arm% %86 x86_64,$(TARGET_CPU)))
VPATH += $(srcdir)/assembler \
$(srcdir)/assembler/wtf \
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment