lib.mk: Remove incorrect u flag from ar
We work in deterministic mode by default, so timestamps are zeroed, thus it is impossible to check timestamps and insert only newer members. Silences the following autotools warning: ar: `u' modifier ignored since `D' is the default (see `U') https://sourceware.org/binutils/docs/binutils/ar-cmdline.html
This commit is contained in:
parent
3bb5d8cd76
commit
1640e10e43
@ -38,7 +38,7 @@ ifeq ($(CC),gcc)
|
||||
GCC_INLINE = -finline-functions
|
||||
endif
|
||||
NASM = nasm
|
||||
LINK = ar cru
|
||||
LINK = ar cr
|
||||
OBJPATH = $(topdir)/objs
|
||||
LIBPATH = $(OBJPATH)/$(BUILD)/lib
|
||||
DEBUG_LIBPATH = $(OBJPATH)/debug/lib
|
||||
|
Loading…
Reference in New Issue
Block a user