summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Götzinger <paul70079@gmail.com>2020-02-08 17:47:31 +0100
committerGitHub <noreply@github.com>2020-02-08 11:47:31 -0500
commit57160861bb3c047e5a7bfa54c760dc8497542776 (patch)
treece8a6e45a891b270700aa3ce4406ec326a13a264
parent3041fca5c3a6ae0610815bfd9a11c71bdf080b9f (diff)
downloadcryptopp-git-57160861bb3c047e5a7bfa54c760dc8497542776.tar.gz
Compile cpu-features.c with CC instead of CXX (GH #926, PR #927)
-rwxr-xr-xGNUmakefile-cross2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile-cross b/GNUmakefile-cross
index c57e6006..6d6f590f 100755
--- a/GNUmakefile-cross
+++ b/GNUmakefile-cross
@@ -858,7 +858,7 @@ aes_armv4.o : aes_armv4.S
$(CXX) $(strip $(CXXFLAGS) $(CRYPTOGAMS_ARMV7_THUMB_FLAG) -c) $<
cpu-features.o: cpu-features.h cpu-features.c
- $(CXX) -x c $(strip $(CXXFLAGS) -c) cpu-features.c
+ $(CC) -x c $(strip $(CXXFLAGS) -c) cpu-features.c
# SSSE3 or NEON available
aria_simd.o : aria_simd.cpp