From e64a9fa5929dc4d4b53a965ed083d55e8e340609 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 15 Aug 2021 11:43:25 +0300 Subject: [PATCH] freebsd_build_tcc.sh: use an explicit --cc=clang --- .github/workflows/freebsd_build_tcc.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/freebsd_build_tcc.sh b/.github/workflows/freebsd_build_tcc.sh index 152c53388..0dfa39c08 100755 --- a/.github/workflows/freebsd_build_tcc.sh +++ b/.github/workflows/freebsd_build_tcc.sh @@ -10,7 +10,11 @@ pushd . git clone git://repo.or.cz/tinycc.git cd tinycc -./configure --prefix=thirdparty/tcc \ +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 \ -- 2.30.2