From 879b8c6fe998ba3bac4d3051f0f39c2c3f675699 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 21 May 2019 20:05:44 -0400 Subject: [PATCH] Remove unused CLANG_INTEGRATED_ASSEMBLER from Makefile This is an artifact that should have been removed at CRYPTOPP_DISABLE_MIXED_ASM. --- GNUmakefile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 02d6f87d..bac9d41e 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -164,6 +164,11 @@ else ZOPT = -O0 endif +# Fix CXX on Cygwin 1.1.4 +ifeq ($(CXX),gcc) +CXX := g++ +endif + # On ARM we may compile aes_armv4.S though the CC compiler ifeq ($(GCC_COMPILER),1) CC=gcc @@ -190,19 +195,11 @@ ifeq ($(INCLUDEDIR),) INCLUDEDIR := $(PREFIX)/include endif -# Fix CXX on Cygwin 1.1.4 -ifeq ($(CXX),gcc) -CXX := g++ -endif - # We honor ARFLAGS, but the "v" option used by default causes a noisy make ifeq ($(ARFLAGS),rv) ARFLAGS = r endif -# Clang integrated assembler will be used with -Wa,-q -CLANG_INTEGRATED_ASSEMBLER ?= 0 - # Original MinGW targets Win2k by default, but lacks proper Win2k support # if target Windows version is not specified, use Windows XP instead ifeq ($(IS_MINGW),1)