Skip to content

Commit 9db3e26

Browse files
lupyuenxiaoxiang781216
authored andcommitted
graphics/libyuv: Download libyuv from NuttX Mirror Repo
NuttX Build Target `sim:nxcamera` failed to build because chromium.googlesource.com is blocking our download of libyuv library: https://github.com/apache/nuttx/actions/runs/24106742084/job/70356374433#step:10:603 ``` Configuration/Tool: sim/nxcamera Building NuttX... curl -L https://chromium.googlesource.com/libyuv/libyuv/+archive/refs/heads/stable.tar.gz -o libyuv.tar.gz gzip: stdin: not in gzip format ``` This PR updates the libyuv Makefile to download libyuv from the NuttX Mirror Repo instead: https://github.com/NuttX/nuttx/releases/tag/libyuv Signed-off-by: Lup Yuen Lee <luppy@appkaki.com>
1 parent 231ac39 commit 9db3e26

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

graphics/libyuv/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ CXXFLAGS += -Wno-shadow -Wno-undef
2929
CXXSRCS = $(wildcard $(SRCDIR)/source/*.cc)
3030

3131
libyuv.tar.gz:
32-
$(Q) curl -L https://chromium.googlesource.com/libyuv/libyuv/+archive/refs/heads/$(CONFIG_LIBYUV_BRANCH).tar.gz -o libyuv.tar.gz
32+
$(Q) curl -L https://github.com/NuttX/nuttx/releases/download/libyuv/libyuv-refs_heads_$(CONFIG_LIBYUV_BRANCH).tar.gz -o libyuv.tar.gz
3333
$(Q) mkdir -p $(SRCDIR)
3434
$(Q) tar zxf libyuv.tar.gz --directory $(SRCDIR)
3535
ifeq ($(CONFIG_LIBYUV_BRANCH),"stable")

0 commit comments

Comments
 (0)