Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lang/golang/golang-values.mk
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ unexport \
GOBOOTSTRAP_TOOLEXEC


GO_DEFAULT_VERSION:=1.26
GO_DEFAULT_VERSION:=1.27
GO_HOST_VERSION:=$(patsubst golang%/host,%,$(filter golang%/host,$(PKG_BUILD_DEPENDS)))
ifeq ($(GO_HOST_VERSION),)
GO_HOST_VERSION:=$(GO_DEFAULT_VERSION)
Expand Down
4 changes: 2 additions & 2 deletions lang/golang/golang-version.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PKG_UNPACK:=$(HOST_TAR) -C "$(PKG_BUILD_DIR)" --strip-components=1 -xzf "$(DL_DI
HOST_UNPACK:=$(HOST_TAR) -C "$(HOST_BUILD_DIR)" --strip-components=1 -xzf "$(DL_DIR)/$(PKG_SOURCE)"

# Don't strip ELF executables in test data
RSTRIP:=$(subst $(SCRIPT_DIR)/rstrip.sh,go-strip-helper $(SCRIPT_DIR)/rstrip.sh,$(RSTRIP))
RSTRIP:=$(subst $(SCRIPT_DIR)/rstrip.sh,../go-strip-helper $(SCRIPT_DIR)/rstrip.sh,$(RSTRIP))

ifeq ($(GO_TARGET_SPECTRE_SUPPORTED),1)
PKG_CONFIG_DEPENDS+=CONFIG_GOLANG_SPECTRE
Expand Down Expand Up @@ -295,5 +295,5 @@ endef
# src/debug contains ELF executables as test data and they reference these
# libraries we need to call this to pass CheckDependencies in package-pack.mk
define Package/$(PKG_NAME)-tests/extra_provides
echo 'libc.so.6' libstdc++.so.6' libtiff.so.6' | tr ' ' '\n'
echo 'libc.so.6 libstdc++.so.6 libtiff.so.6' | tr ' ' '\n'
endef
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

include $(TOPDIR)/rules.mk

PKG_NAME:=golang1.26
GO_VERSION_MAJOR_MINOR:=1.26
GO_VERSION_PATCH:=6
GO_VERSION_RC:=
PKG_NAME:=golang1.27
GO_VERSION_MAJOR_MINOR:=1.27
GO_VERSION_PATCH:=
GO_VERSION_RC:=3
GO_BOOTSTRAP_VERSION:=bootstrap
PKG_HASH:=a0721c54c688901448d77ad9b3ec7ea7c474730755ff891382e92ecb93ff2cb1
PKG_HASH:=e9e20edd1720095f9109696e963a66069d3f6d48d00eb9388c888ce06631df5c

PKG_VERSION:=$(GO_VERSION_MAJOR_MINOR)$(if $(GO_VERSION_RC),.0)$(if $(GO_VERSION_PATCH),.$(GO_VERSION_PATCH))
PKG_FILE_VERSION:=$(GO_VERSION_MAJOR_MINOR)$(if $(GO_VERSION_RC),rc$(GO_VERSION_RC))$(if $(GO_VERSION_PATCH),.$(GO_VERSION_PATCH))
Expand Down
File renamed without changes.
Loading