From c61dda3425659f4759ba3a1bb844906fafe81e9e Mon Sep 17 00:00:00 2001 From: Laurent Cheylus Date: Mon, 9 Jun 2025 17:52:24 +0200 Subject: [PATCH] ci: remove script to build tcc on FreeBSD (obsoleted by thirdparty/build_scripts/thirdparty-freebsd-amd64_tcc.sh) (#24681) Signed-off-by: Laurent Cheylus --- .github/workflows/freebsd_build_tcc.sh | 33 -------------------------- 1 file changed, 33 deletions(-) delete mode 100755 .github/workflows/freebsd_build_tcc.sh diff --git a/.github/workflows/freebsd_build_tcc.sh b/.github/workflows/freebsd_build_tcc.sh deleted file mode 100755 index e87cfc6690..0000000000 --- a/.github/workflows/freebsd_build_tcc.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env bash - -## should be run in V's main repo folder! - -rm -rf tinycc/ -rm -rf thirdparty/tcc/ - -pushd . - -.github/workflows/retry.sh git clone git://repo.or.cz/tinycc.git -cd tinycc - -export CC=clang - -./configure \ - --cc=clang \ - --prefix=thirdparty/tcc \ - --bindir=thirdparty/tcc \ - --crtprefix=thirdparty/tcc/lib:/usr/lib \ - --libpaths=thirdparty/tcc/lib:/usr/lib:/lib:/usr/local/lib \ - --debug -gmake -gmake install - -popd - -mv tinycc/thirdparty/tcc thirdparty/tcc -mv thirdparty/tcc/tcc thirdparty/tcc/tcc.exe - -sudo ln -s $(pwd)/thirdparty/tcc/tcc.exe /usr/local/bin/tcc - -thirdparty/tcc/tcc.exe -v -v -