diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-12-18 12:06:58 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-12-26 00:00:03 +0100 |
commit | 3d978c31a7fd37d633ca2baf749b2e9f187a0b8f (patch) | |
tree | 9d8151ff0cccdefbcfd5dacab67636b3d3a086d3 /src/Volume | |
parent | 9b0669da2980f53d5f1c3d3017bd182a9d367281 (diff) | |
download | VeraCrypt-3d978c31a7fd37d633ca2baf749b2e9f187a0b8f.tar.gz VeraCrypt-3d978c31a7fd37d633ca2baf749b2e9f187a0b8f.zip |
MacOSX: use Yasm to build Twofish 64-bit assembly code on OSX since native compiler doesn't support GAS syntax
Diffstat (limited to 'src/Volume')
-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 f6a8cec8..40f1281d 100644 --- a/src/Volume/Volume.make +++ b/src/Volume/Volume.make @@ -76,7 +76,7 @@ ifeq "$(PLATFORM)" "MacOSX" rm -fr ../Crypto/Aes_x86.o ../Crypto/Aes_x64.o ../Crypto/Twofish_asm.oo: ../Crypto/Twofish_x64.S @echo Assembling $(<F) - $(CC) -arch x86_64 -c ../Crypto/Twofish_x64.S -o ../Crypto/Twofish_asm.oo + $(YASM) -p gas -f macho64 -o ../Crypto/Twofish_asm.oo ../Crypto/Twofish_x64.S endif include $(BUILD_INC)/Makefile.inc |