Author: jkim
Date: Wed Oct 26 20:12:30 2016
New Revision: 307977
URL: https://svnweb.freebsd.org/changeset/base/307977

Log:
  Prefer ACFLAGS over CFLAGS for compiling aarch64 assembly files.

Modified:
  head/secure/lib/libcrypto/Makefile

Modified: head/secure/lib/libcrypto/Makefile
==============================================================================
--- head/secure/lib/libcrypto/Makefile  Wed Oct 26 20:02:22 2016        
(r307976)
+++ head/secure/lib/libcrypto/Makefile  Wed Oct 26 20:12:30 2016        
(r307977)
@@ -24,7 +24,7 @@ SRCS= cpt_err.c cryptlib.c cversion.c ex
        o_fips.c o_init.c o_str.c o_time.c uid.c
 .if defined(ASM_aarch64)
 SRCS+= arm64cpuid.S armcap.c mem_clr.c
-CFLAGS.arm64cpuid.S=   -march=armv8-a+crypto
+ACFLAGS.arm64cpuid.S=  -march=armv8-a+crypto
 .elif defined(ASM_amd64)
 SRCS+= x86_64cpuid.S
 .elif defined(ASM_arm)
@@ -40,7 +40,7 @@ INCS+=        crypto.h ebcdic.h opensslv.h ossl
 SRCS+= aes_cfb.c aes_ctr.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
-CFLAGS.aesv8-armx.S=   -march=armv8-a+crypto
+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 \
        aesni-sha256-x86_64.S aesni-x86_64.S bsaes-x86_64.S vpaes-x86_64.S
@@ -246,7 +246,7 @@ SRCS+=      cbc128.c ccm128.c cfb128.c ctr128
        wrap128.c xts128.c
 .if defined(ASM_aarch64)
 SRCS+= ghashv8-armx.S
-CFLAGS.ghashv8-armx.S= -march=armv8-a+crypto
+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)
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to