mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
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
This commit is contained in:
parent
38fa1454d8
commit
ac6cd00f7c
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue