diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Rules.mak | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/Rules.mak b/test/Rules.mak index ed759c2a5..1c00bce6a 100644 --- a/test/Rules.mak +++ b/test/Rules.mak @@ -42,11 +42,15 @@ export TARGET_ARCH # make CROSS=mipsel-linux- # will build uClibc for 'mipsel'. -CROSS = +CROSS = CC = $(CROSS)gcc STRIPTOOL = strip -LDD = $(TOPDIR)utils/ldd RM = rm -f +ifeq ($(LDSO_LDD_SUPPORT),y) +LDD = $(TOPDIR)utils/ldd +else +LDD = @true +endif # Select the compiler needed to build binaries for your development system HOSTCC = gcc |