From a0f874936ad348e72fcf66e39d9b491747f1b520 Mon Sep 17 00:00:00 2001 From: bebbo Date: Mon, 2 Jul 2018 18:34:58 +0200 Subject: [PATCH] disable gdb if clang is used - gcc is also working on OSX --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3aa049c..27983c7 100644 --- a/Makefile +++ b/Makefile @@ -250,7 +250,7 @@ BINUTILS = $(patsubst %,$(PREFIX)/bin/%$(EXEEXT), $(BINUTILS_CMD)) BINUTILS_DIR = . bfd gas ld binutils opcodes BINUTILSD = $(patsubst %,projects/binutils/%, $(BINUTILS_DIR)) -ifneq ($(UNAME_S),Darwin) +ifeq ($(findstring clang,$(CC)),) ALL_GDB = all-gdb INSTALL_GDB = install-gdb endif