ci: Remove obsolete compiler-wrapper

We don't actually need this anymore. We were previously using it to find
ccache, but Meson will do this for us. Now that we pass
-Wl,--fatal-warnings, we don't need to pass -Werror to the link stage
either.

This removes two shell execs, one subshell, and one call to each of grep
and printf, per compile.

Signed-off-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33137>
This commit is contained in:
Daniel Stone
2024-11-05 15:33:45 +00:00
committed by Marge Bot
parent 439408229b
commit f96abf7f1a
8 changed files with 1 additions and 66 deletions

View File

@@ -28,9 +28,7 @@ export PATH=$PATH:$PWD/.gitlab-ci/build
touch native.file
printf > native.file "%s\n" \
"[binaries]" \
"c = 'compiler-wrapper-${CC:-gcc}.sh'" \
"cpp = 'compiler-wrapper-${CXX:-g++}.sh'"
"[binaries]"
# We need to control the version of llvm-config we're using, so we'll
# tweak the cross file or generate a native file to do so.