diff options
author | kavsrf <kavsrf@gmail.com> | 2017-07-16 12:43:20 +0300 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-16 15:14:52 +0200 |
commit | f45dba14bed2c67f7aa79957fdeadb7f74cb6d10 (patch) | |
tree | 1e2d62119b361790113b5ae8a346ce965b2bb88c /src/Makefile | |
parent | 295d5affbb5ca283595b6eb664d0c301871e2fbe (diff) | |
download | VeraCrypt-f45dba14bed2c67f7aa79957fdeadb7f74cb6d10.tar.gz VeraCrypt-f45dba14bed2c67f7aa79957fdeadb7f74cb6d10.zip |
RPI, armv7 target
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index fa4a4ebf..7d7f69db 100644 --- a/src/Makefile +++ b/src/Makefile @@ -139,6 +139,9 @@ ifneq (,$(filter i386 i486 i586 i686 x86,$(ARCH))) else ifneq (,$(filter x86_64 x86-64 amd64 x64,$(ARCH))) CPU_ARCH = x64 ASFLAGS += -f elf64 -D __BITS__=64 +else ifneq (,$(filter armv7l,$(ARCH))) + PLATFORM_ARCH := armv7 + CPU_ARCH = armv7 endif ifeq "$(origin NOASM)" "command line" |