Skip to content

Commit 782f161

Browse files
author
Chad Trabant
committed
minor fixup to ar command for static library build
1 parent 1e36a43 commit 782f161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dynamic: $(LIB_DYN)
3434
# Build static library
3535
$(LIB_A): $(LIB_OBJS)
3636
rm -f $(LIB_A)
37-
ar -csq $(LIB_A) $(LIB_OBJS)
37+
ar -crs $(LIB_A) $(LIB_OBJS)
3838

3939
# Build shared library using GCC-style options
4040
$(LIB_SO): $(LIB_DOBJS)

0 commit comments

Comments
 (0)