From fe71638a96179bb907dfb9b6f24f30c8776d2b54 Mon Sep 17 00:00:00 2001 From: Ari Koivula Date: Mon, 6 Jun 2016 15:42:26 +0300 Subject: [PATCH] Fix problem with ASM compilation When compiling C++ files along with C, libtool would complain about the --tag missing, even though CC should be the default. --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 219e0f84..19b2f99f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -208,5 +208,5 @@ yasm_verbose_ = $(yasm_verbose_@AM_DEFAULT_V@) yasm_verbose_0 = @echo " YASM " $@; .asm.lo: - $(yasm_verbose)$(LIBTOOL) --mode=compile $(YASM) -I$(srcdir)/extras $(ASFLAGS) $< -o $@ -prefer-non-pic 1>/dev/null + $(yasm_verbose)$(LIBTOOL) --mode=compile --tag=CC $(YASM) -I$(srcdir)/extras $(ASFLAGS) $< -o $@ -prefer-non-pic 1>/dev/null