diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-06-19 09:02:31 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-06-19 09:02:31 +0200 |
commit | c370d4887ce66952a8fc6691d070cc9a8a9443f0 (patch) | |
tree | ef772d8f22fe16dec1a5ff7be31b0b333a5c3bf6 | |
parent | 779d755eac7847dd722ea1f0ba4385edefc799b7 (diff) | |
download | VeraCrypt-c370d4887ce66952a8fc6691d070cc9a8a9443f0.tar.gz VeraCrypt-c370d4887ce66952a8fc6691d070cc9a8a9443f0.zip |
Linux: Fix assembly files not built on Linux
This is a regression caused by macOS changes. And endif statement was misplaced.
-rw-r--r-- | src/Volume/Volume.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Volume/Volume.make b/src/Volume/Volume.make index c02bbdf1..708f28c5 100644 --- a/src/Volume/Volume.make +++ b/src/Volume/Volume.make @@ -52,6 +52,7 @@ ifneq "$(COMPILE_ASM)" "false" OBJSEX += ../Crypto/sha512_avx1.oo OBJSEX += ../Crypto/sha512_avx2.oo OBJSEX += ../Crypto/sha512_sse4.oo +endif else ifeq "$(CPU_ARCH)" "x86" OBJS += ../Crypto/Aes_x86.o ifeq "$(DISABLE_AESNI)" "0" @@ -77,7 +78,6 @@ else ifeq "$(CPU_ARCH)" "x64" else OBJS += ../Crypto/Aescrypt.o endif -endif ifeq "$(GCC_GTEQ_430)" "1" OBJSSSE41 += ../Crypto/blake2s_SSE41.osse41 |