diff options
| -rw-r--r-- | toolchain/gdb/gdb.mk | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk index ab9de4e0b..80d66f24c 100644 --- a/toolchain/gdb/gdb.mk +++ b/toolchain/gdb/gdb.mk @@ -75,8 +75,8 @@ $(GDB_TARGET_DIR)/.configured: $(GDB_DIR)/.unpacked  	(cd $(GDB_TARGET_DIR); rm -rf config.cache ; \  		gdb_cv_func_sigsetjmp=yes \  		$(TARGET_CONFIGURE_OPTS) \ -		CFLAGS_FOR_TARGET="$(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \ -		CFLAGS="$(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \ +		CFLAGS_FOR_TARGET="$(TARGET_CFLAGS) $(TARGET_LDFLAGS) -Wno-error" \ +		CFLAGS="$(TARGET_CFLAGS) $(TARGET_LDFLAGS) -Wno-error" \  		$(GDB_TARGET_CONFIGURE_VARS) \  		$(GDB_DIR)/configure \  		--build=$(GNU_HOST_NAME) \ @@ -88,6 +88,7 @@ $(GDB_TARGET_DIR)/.configured: $(GDB_DIR)/.unpacked  		--disable-tui --disable-gdbtk --without-x \  		--disable-sim --enable-gdbserver \  		--without-included-gettext \ +		--disable-werror \  	);  ifeq ($(BR2_ENABLE_LOCALE),y)  	-$(SED) "s,^INTL *=.*,INTL = -lintl,g;" $(GDB_DIR)/gdb/Makefile | 
