From ac6cd00f7c12e8ddad95abbbc0b494e23aa72b38 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Sat, 3 Oct 2015 11:53:08 +0000 Subject: [PATCH] Makefile: Automatically disable ASM when "arm" is found in `uname -m` on Linux. git-svn-id: https://svn.eduke32.com/eduke32@5372 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/Makefile.common | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/polymer/eduke32/Makefile.common b/polymer/eduke32/Makefile.common index d1646e191..5e5b4cef3 100644 --- a/polymer/eduke32/Makefile.common +++ b/polymer/eduke32/Makefile.common @@ -669,6 +669,10 @@ ifeq ($(SUBPLATFORM),LINUX) override NOASM=1 endif + ifeq ($(findstring arm,$(SYSARCH)),arm) + override NOASM=1 + endif + ifeq ($(findstring x86_64,$(SYSARCH)),x86_64) ifeq (1,$(BUILD32_ON_64)) # On my 64bit Gentoo these are the 32bit emulation libs