Luis Cáceres

Results 5 issues of Luis Cáceres

The icons for office documents are missing

missing-icons
no-de-specified

This MR ensures the strings used in the Step.Fmt belong to the builder, which prevents a use-after-free footgun in certain cases. e.g. ```zig const std = @import("std"); pub fn build(b:...

Compiling on gcc-10.2 (Gentoo Linux) the following code ``` #include #include #include static int ii = 0; auto foo() -> cppcoro::task { co_return (++ii); } auto process() -> cppcoro::task {...

Fixes https://github.com/ziglang/zig/issues/20064, so that the compiler doesn't crash in that case and instead correctly outputs: ``` ~/projects/zig (i20064?) $ build/stage4/bin/zig run reduce.zig reduce.zig:12:55: error: unable to evaluate comptime expression arr[i]...

Fixes https://github.com/ziglang/zig/issues/18074, original PR was https://github.com/ziglang/zig/pull/18193. This PR adds support for X86/X86_64 CPU model detection and function multiversioning in C/C++ via the target and target_clones attributes (compatible with LLVM's, which...