Fix source path for portable-simd

To avoid overriding the source for coretests every time.
This commit is contained in:
bjorn3 2024-08-10 16:33:36 +00:00
parent aa918f02e4
commit ab1da46e45

View File

@ -129,7 +129,7 @@ const fn jit_bin(config: &'static str, source: &'static str, args: &'static str)
pub(crate) static REGEX: CargoProject = CargoProject::new(&REGEX_REPO.source_dir(), "regex_target");
pub(crate) static PORTABLE_SIMD_SRC: RelPath = RelPath::BUILD.join("coretests");
pub(crate) static PORTABLE_SIMD_SRC: RelPath = RelPath::BUILD.join("portable-simd");
pub(crate) static PORTABLE_SIMD: CargoProject =
CargoProject::new(&PORTABLE_SIMD_SRC, "portable-simd_target");