mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-02 02:51:42 +00:00
[upstream_utils] Upgrade Eigen to latest (#8228)
This commit is contained in:
@@ -38,6 +38,10 @@ def eigen_inclusions(dp: Path, f: str):
|
||||
if "MKL" in f:
|
||||
return False
|
||||
|
||||
# Exclude HIP CUDA support
|
||||
if "GpuHip" in f:
|
||||
return False
|
||||
|
||||
# Include architectures we care about by filtering for Core/arch
|
||||
if "Core" in dp.parts and "arch" in dp.parts:
|
||||
return (
|
||||
@@ -140,8 +144,8 @@ def copy_upstream_src(wpilib_root: Path):
|
||||
def main():
|
||||
name = "eigen"
|
||||
url = "https://gitlab.com/libeigen/eigen.git"
|
||||
# master on 2025-05-18
|
||||
tag = "d81aa18f4dc56264b2cd7e2f230807d776a2d385"
|
||||
# master on 2025-09-08
|
||||
tag = "e0a59e5a66e6d16fa93ab4f5e48bf539205e837f"
|
||||
|
||||
eigen = Lib(name, url, tag, copy_upstream_src)
|
||||
eigen.main()
|
||||
|
||||
Reference in New Issue
Block a user