Skip to content
Snippets Groups Projects
Commit 5968adc4 authored by Mike Frysinger's avatar Mike Frysinger Committed by Wolfgang Denk
Browse files

build: force migration away from $(AR)


People keep adding new code that still uses $(AR) instead of
$(cmd_link_o_target), so turn it into a build time error.

We still use $(AR) locally, but we don't use $(ARFLAGS).

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 26ddff2d
No related branches found
No related tags found
No related merge requests found
......@@ -157,11 +157,9 @@ endif
#########################################################################
ifneq (,$(findstring s,$(MAKEFLAGS)))
ARFLAGS = cr
else
ARFLAGS = crv
endif
# We don't actually use $(ARFLAGS) anywhere anymore, so catch people
# who are porting old code to latest mainline but not updating $(AR).
ARFLAGS = $(error update your Makefile to use cmd_link_o_target and not AR)
RELFLAGS= $(PLATFORM_RELFLAGS)
DBGFLAGS= -g # -DDEBUG
OPTFLAGS= -Os #-fomit-frame-pointer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment