Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Sep 2018 06:50:56 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r338884 - projects/openssl111/secure/lib/libcrypto
Message-ID:  <201809220650.w8M6ouaU099360@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jkim
Date: Sat Sep 22 06:50:56 2018
New Revision: 338884
URL: https://svnweb.freebsd.org/changeset/base/338884

Log:
  Add missing ACFLAGS for aarch64.

Modified:
  projects/openssl111/secure/lib/libcrypto/Makefile

Modified: projects/openssl111/secure/lib/libcrypto/Makefile
==============================================================================
--- projects/openssl111/secure/lib/libcrypto/Makefile	Sat Sep 22 05:59:43 2018	(r338883)
+++ projects/openssl111/secure/lib/libcrypto/Makefile	Sat Sep 22 06:50:56 2018	(r338884)
@@ -21,6 +21,7 @@ SRCS+=	mem_dbg.c mem_sec.c o_dir.c o_fips.c o_fopen.c 
 SRCS+=	o_time.c threads_pthread.c uid.c
 .if defined(ASM_aarch64)
 SRCS+=	arm64cpuid.S armcap.c
+ACFLAGS.arm64cpuid.S=	-march=armv8-a+crypto
 .elif defined(ASM_amd64)
 SRCS+=	x86_64cpuid.S
 .elif defined(ASM_arm)
@@ -35,6 +36,7 @@ SRCS+=	mem_clr.c
 SRCS+=	aes_cfb.c aes_ecb.c aes_ige.c aes_misc.c aes_ofb.c aes_wrap.c
 .if defined(ASM_aarch64)
 SRCS+=	aes_cbc.c aes_core.c aesv8-armx.S vpaes-armv8.S
+ACFLAGS.aesv8-armx.S=	-march=armv8-a+crypto
 .elif defined(ASM_amd64)
 SRCS+=	aes-x86_64.S aesni-mb-x86_64.S aesni-sha1-x86_64.S
 SRCS+=	aesni-sha256-x86_64.S aesni-x86_64.S bsaes-x86_64.S vpaes-x86_64.S
@@ -241,6 +243,7 @@ SRCS+=	cbc128.c ccm128.c cfb128.c ctr128.c cts128.c gc
 SRCS+=	ofb128.c wrap128.c xts128.c
 .if defined(ASM_aarch64)
 SRCS+=	ghashv8-armx.S
+ACFLAGS.ghashv8-armx.S=	-march=armv8-a+crypto
 .elif defined(ASM_amd64)
 SRCS+=	aesni-gcm-x86_64.S ghash-x86_64.S
 .elif defined(ASM_arm)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809220650.w8M6ouaU099360>