MacOSX: use Yasm to build Twofish 64-bit assembly code on OSX since native compiler doesn't support GAS syntax

This commit is contained in:
Mounir IDRASSI 2016-12-18 12:06:58 +01:00
parent 9b0669da29
commit 3d978c31a7
No known key found for this signature in database
GPG Key ID: DD0C382D5FCFB8FC
2 changed files with 3 additions and 1 deletions

View File

@ -39,6 +39,7 @@ export AR ?= ar
export CC ?= gcc
export CXX ?= g++
export AS := nasm
export YASM := yasm
export RANLIB ?= ranlib
export CFLAGS := -Wall
@ -251,6 +252,7 @@ ifeq "$(shell uname -s)" "Darwin"
endif
AS := $(BASE_DIR)/Build/Tools/MacOSX/nasm
YASM := $(BASE_DIR)/Build/Tools/MacOSX/yasm
ASFLAGS += --prefix _
ifeq "$(TC_BUILD_CONFIG)" "Release"

View File

@ -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