summaryrefslogtreecommitdiff
path: root/pkg/simdutf
AgeCommit message (Collapse)Author
2025-10-03zig-15: build binary buildsMitchell Hashimoto
2025-07-22build-system: Replace deprecated usages of addStaticLibrary with addLibrary ↵Jayson Reis
(#8029) Hi there, this is just a low-hanging fruit and it also prepares the way for the future 0.15, which removes addStaticLibrary. Please, let me know what to do on the `// TODO` comments.
2025-05-29build: use a libc txt file to point to correct Apple SDKMitchell Hashimoto
This fixes an issue where Ghostty would not build against the macOS 15.5 SDK. What was happening was that Zig was adding its embedded libc paths to the clang command line, which included old headers that were incompatible with the latest (macOS 15.5) SDK. Ghostty was adding the newer paths but they were being overridden by the embedded libc paths. The reason this was happening is because Zig was using its own logic to find the libc paths and this was colliding with the paths we were setting manually. To fix this, we now use a `libc.txt` file that explicitly tells Zig where to find libc, and we base this on our own SDK search logic.
2025-03-13for iOS simulator builds for apple M1 as base CPU modelMitchell Hashimoto
2025-03-12pkg/highway: upgrade to fix compilation issues on LLVM18Mitchell Hashimoto
2025-03-12update all packages to new hash for cachingMitchell Hashimoto
2025-03-11Zig 0.14Mitchell Hashimoto
2025-01-03Fix: Update pkg/simdutf/build.zig.zon to match vendored versionazhn
2024-06-24disable AVX512 until Zig issue is resolvedMitchell Hashimoto
https://github.com/ziglang/zig/issues/20414
2024-06-24begin 0.13 update process -- very brokenMitchell Hashimoto
2024-05-09pkg/simdutf: update to 5.2.8Mitchell Hashimoto
2024-04-17working on more zig breaking changesMitchell Hashimoto
2024-02-05pkg: remove unused files, add highway API to get targetsMitchell Hashimoto
2024-02-05move simdutf to a pkgMitchell Hashimoto