mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 07:00:30 +00:00
mk: allow RANLIB override
To ease cross-development Gentoo alows installing only fully qualified toolchains tools: x86_64-pc-linux-gnu-ranlib and similar. The change allow overriding RANLIB variable similar to existing CC, HOST_CC, LD and friends. Reported-by: Agostino Sarubbo Bug: https://bugs.gentoo.org/720700 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
This commit is contained in:
parent
fea70914e8
commit
843cc238f3
@ -1,7 +1,7 @@
|
||||
ifeq (${_INCLUDE_MK_CLANG_},)
|
||||
_INCLUDE_MK_CLANG_=1
|
||||
CC?=clang
|
||||
RANLIB=ranlib
|
||||
RANLIB?=ranlib
|
||||
ONELIB=0
|
||||
CC_AR=ar q ${LIBAR}
|
||||
CFLAGS+=-MD
|
||||
|
@ -2,7 +2,7 @@ ifeq (${_INCLUDE_MK_GCC_},)
|
||||
_INCLUDE_MK_GCC_=1
|
||||
CC?=gcc
|
||||
OBJCOPY=objcopy
|
||||
RANLIB=ranlib
|
||||
RANLIB?=ranlib
|
||||
ONELIB=0
|
||||
CC_AR=ar q ${LIBAR}
|
||||
CFLAGS+=-MD
|
||||
|
Loading…
Reference in New Issue
Block a user