From: Bernhard Reutner-Fischer Date: Tue, 26 Jun 2007 14:32:10 +0000 (-0000) Subject: - don't bail out on cc warnings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7bc14306692220ab2bd67c10db90b8a803c37662;p=buildroot.git - don't bail out on cc warnings --- diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk index ab9de4e0b2..80d66f24c3 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