Skip to content

Commit cfb0f5b

Browse files
authored
Set LIBSONAME suffix to .a for AIX
another fix for #1803
1 parent b025523 commit cfb0f5b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile.system

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,11 @@ endif
12111211

12121212
LIBDLLNAME = $(LIBPREFIX).dll
12131213
IMPLIBNAME = lib$(LIBNAMEBASE).dll.a
1214+
ifneq ($(OSNAME), AIX)
12141215
LIBSONAME = $(LIBNAME:.$(LIBSUFFIX)=.so)
1216+
else
1217+
LIBSONAME = $(LIBNAME:.$(LIBSUFFIX)=.a)
1218+
endif
12151219
LIBDYNNAME = $(LIBNAME:.$(LIBSUFFIX)=.dylib)
12161220
LIBDEFNAME = $(LIBNAME:.$(LIBSUFFIX)=.def)
12171221
LIBEXPNAME = $(LIBNAME:.$(LIBSUFFIX)=.exp)

0 commit comments

Comments
 (0)