From bf57c4f16f331f8e9dd7f80b87481374b7e18011 Mon Sep 17 00:00:00 2001 From: Satoshi Terasaki Date: Sun, 6 Sep 2026 16:21:47 +0900 Subject: [PATCH] Fix CI: remove broken Clang_jll import in generate_C_API.jl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clang.jl (currently resolved v0.19.3) no longer exposes Clang_jll under Clang.LibClang — that submodule now depends on Clang_unified_jll instead. The unused `using Clang.LibClang.Clang_jll` import therefore fails with: UndefVarError: `Clang_jll` not defined in `Clang.LibClang` This broke deps/build.jl (which calls generate_C_API.jl) and made "Test CalcPi.jl" and "Integration Test" fail in CI on every PR. The import isn't referenced anywhere else in the file, so it's safe to drop. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01YU8yMLZkRkqta9wbWPGfgx --- CalcPi.jl/utils/generate_C_API.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/CalcPi.jl/utils/generate_C_API.jl b/CalcPi.jl/utils/generate_C_API.jl index 77a4935..f7b5187 100644 --- a/CalcPi.jl/utils/generate_C_API.jl +++ b/CalcPi.jl/utils/generate_C_API.jl @@ -3,7 +3,6 @@ Pkg.activate(@__DIR__) Pkg.instantiate() using Clang.Generators -using Clang.LibClang.Clang_jll # Function to print help message function print_help()