mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 02:58:02 -06:00
Linux: Always use "uname -m" to determine processor type. This fixes Slackware build issue.
This commit is contained in:
@@ -131,10 +131,7 @@ export PLATFORM_UNSUPPORTED := 0
|
||||
export CPU_ARCH ?= unknown
|
||||
export SIMD_SUPPORTED := 0
|
||||
|
||||
ARCH = $(shell uname -p)
|
||||
ifeq "$(ARCH)" "unknown"
|
||||
ARCH = $(shell uname -m)
|
||||
endif
|
||||
ARCH = $(shell uname -m)
|
||||
|
||||
ifneq (,$(filter i386 i486 i586 i686 x86,$(ARCH)))
|
||||
CPU_ARCH = x86
|
||||
|
||||
Reference in New Issue
Block a user