From f2fb8c7035eff787eebe138a2a0e50c5f578c735 Mon Sep 17 00:00:00 2001 From: Zhang Xianyi Date: Tue, 4 Jun 2013 16:05:28 +0800 Subject: [PATCH] Change LIBSUFFIX from .lib to .a on windows. --- Makefile.system | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.system b/Makefile.system index b5e64c06a..efce81e2a 100644 --- a/Makefile.system +++ b/Makefile.system @@ -152,7 +152,7 @@ EXTRALIB += -defaultlib:advapi32 SUFFIX = obj PSUFFIX = pobj -LIBSUFFIX = lib +LIBSUFFIX = a ifeq ($(C_COMPILER), GCC) #Test for supporting MS_ABI GCCVERSIONGTEQ4 := $(shell expr `$(CC) -dumpversion | cut -f1 -d.` \>= 4)