Skip to content

Commit

Permalink
restore: fix 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail B committed Apr 30, 2021
1 parent f43ec61 commit b993def
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions toolchain/binutils/binutils.mk
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ $(BINUTILS_DIR)/.patched: $(BINUTILS_DIR)/.unpacked
$(BINUTILS_DIR1)/.configured: $(BINUTILS_DIR)/.patched
mkdir -p $(BINUTILS_DIR1)
(cd $(BINUTILS_DIR1); rm -rf config.cache; \
$(HOST_CONFIGURE_OPTS) \
$(HOST_CONFIGURE_OPTS) CFLAGS=' -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -std=gnu99 -fgnu89-inline ' \
$(BINUTILS_DIR)/configure $(QUIET) \
--prefix=$(BR2_SYSROOT_PREFIX)/usr \
--build=$(GNU_HOST_NAME) \
Expand Down Expand Up @@ -140,7 +140,7 @@ BINUTILS_DIR2:=$(BUILD_DIR)/binutils-$(BINUTILS_VERSION)-target
$(BINUTILS_DIR2)/.configured: $(BINUTILS_DIR)/.patched
mkdir -p $(BINUTILS_DIR2)
(cd $(BINUTILS_DIR2); rm -rf config.cache; \
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_CONFIGURE_OPTS) CFLAGS=' -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -std=gnu99 -fgnu89-inline ' \
$(BINUTILS_DIR)/configure $(QUIET) \
--prefix=/usr \
--exec-prefix=/usr \
Expand Down
12 changes: 6 additions & 6 deletions toolchain/gcc/gcc-uclibc-4.x.mk
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,9 @@ GCC_BUILD_DIR1:=$(TOOLCHAIN_DIR)/gcc-$(GCC_VERSION)-initial
$(GCC_BUILD_DIR1)/.configured: $(GCC_DIR)/.patched
mkdir -p $(GCC_BUILD_DIR1)
(cd $(GCC_BUILD_DIR1); rm -rf config.cache; \
$(HOST_CONFIGURE_OPTS) \
$(HOST_CONFIGURE_OPTS) CFLAGS=' -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -std=gnu99 -fgnu89-inline ' \
MAKEINFO=missing \
$(GCC_DIR)/configure $(QUIET) \
$(GCC_DIR)/configure $(QUIET) --disable-libmudflap --disable-libgomp \
--prefix=$(STAGING_DIR)/usr \
--build=$(GNU_HOST_NAME) \
--host=$(GNU_HOST_NAME) \
Expand Down Expand Up @@ -290,9 +290,9 @@ $(GCC_BUILD_DIR2)/.configured: $(GCC_SRC_DIR)/.patched $(GCC_STAGING_PREREQ)
#-rmdir $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/lib
#ln -snf ../lib $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/lib
(cd $(GCC_BUILD_DIR2); rm -rf config.cache; \
$(HOST_CONFIGURE_OPTS) \
$(HOST_CONFIGURE_OPTS) CFLAGS=' -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -std=gnu99 -fgnu89-inline ' \
MAKEINFO=missing \
$(GCC_SRC_DIR)/configure $(QUIET) \
$(GCC_SRC_DIR)/configure $(QUIET) --disable-libmudflap --disable-libgomp \
--prefix=$(BR2_SYSROOT_PREFIX)/usr \
--build=$(GNU_HOST_NAME) \
--host=$(GNU_HOST_NAME) \
Expand Down Expand Up @@ -418,11 +418,11 @@ $(GCC_BUILD_DIR3)/.prepared: $(STAMP_DIR)/gcc_libs_target_installed $(GCC_TARGET

$(GCC_BUILD_DIR3)/.configured: $(GCC_BUILD_DIR3)/.prepared
(cd $(GCC_BUILD_DIR3); rm -rf config.cache; \
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_CONFIGURE_OPTS) CFLAGS=' -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -std=gnu99 -fgnu89-inline ' \
MAKEINFO=missing \
$(TARGET_CONFIGURE_ARGS) \
$(TARGET_GCC_FLAGS) \
$(GCC_SRC_DIR)/configure $(QUIET) \
$(GCC_SRC_DIR)/configure $(QUIET) --disable-libmudflap --disable-libgomp \
--prefix=/usr \
--build=$(GNU_HOST_NAME) \
--host=$(REAL_GNU_TARGET_NAME) \
Expand Down
2 changes: 1 addition & 1 deletion toolchain/kernel-headers/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "2.6.27.35" if BR2_KERNEL_HEADERS_2_6_27
default "2.6.28.10" if BR2_KERNEL_HEADERS_2_6_28
default "2.6.29.6" if BR2_KERNEL_HEADERS_2_6_29
default "2.6.30.8" if BR2_KERNEL_HEADERS_2_6_30
default "2.6.30.5" if BR2_KERNEL_HEADERS_2_6_30
default "2.6.31.1" if BR2_KERNEL_HEADERS_2_6_31
default "2.6" if BR2_KERNEL_HEADERS_SNAP

0 comments on commit b993def

Please sign in to comment.