ci: Different LLVM version, c_ulong -> usize

This commit is contained in:
Luke Street 2025-10-14 10:48:08 -06:00
parent 185205c2ae
commit 09c01faf07
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ jobs:
uses: KyleMayes/install-llvm-action@v2
if: matrix.platform == 'windows-latest'
with:
version: 21.1.2
version: 20.1.8
directory: ${{ runner.temp }}/llvm
- name: Set LIBCLANG_PATH
run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV

View File

@ -62,7 +62,7 @@ mod bindings {
pub type c_ushort = u16;
pub type c_uint = u32;
pub type c_int = i32;
pub type c_ulong = u64;
pub type c_ulong = usize;
}
#[cfg(feature = "std")]
mod types {