| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-11-20 | update deprecated ArrayListUnmanaged usage (#25958) | Benjamin Jurk | |
| 2025-09-21 | Elf2: create a new linker from scratch | Jacob Young | |
| This iteration already has significantly better incremental support. Closes #24110 | |||
| 2025-08-31 | std.fmt: delete deprecated APIs | Andrew Kelley | |
| std.fmt.Formatter -> std.fmt.Alt std.fmt.format -> std.Io.Writer.print | |||
| 2025-08-29 | std.Io: delete GenericReader | Andrew Kelley | |
| and delete deprecated alias std.io | |||
| 2025-07-07 | compiler: update all instances of std.fmt.Formatter | Andrew Kelley | |
| 2025-07-07 | std.fmt: breaking API changes | Andrew Kelley | |
| added adapter to AnyWriter and GenericWriter to help bridge the gap between old and new API make std.testing.expectFmt work at compile-time std.fmt no longer has a dependency on std.unicode. Formatted printing was never properly unicode-aware. Now it no longer pretends to be. Breakage/deprecations: * std.fs.File.reader -> std.fs.File.deprecatedReader * std.fs.File.writer -> std.fs.File.deprecatedWriter * std.io.GenericReader -> std.io.Reader * std.io.GenericWriter -> std.io.Writer * std.io.AnyReader -> std.io.Reader * std.io.AnyWriter -> std.io.Writer * std.fmt.format -> std.fmt.deprecatedFormat * std.fmt.fmtSliceEscapeLower -> std.ascii.hexEscape * std.fmt.fmtSliceEscapeUpper -> std.ascii.hexEscape * std.fmt.fmtSliceHexLower -> {x} * std.fmt.fmtSliceHexUpper -> {X} * std.fmt.fmtIntSizeDec -> {B} * std.fmt.fmtIntSizeBin -> {Bi} * std.fmt.fmtDuration -> {D} * std.fmt.fmtDurationSigned -> {D} * {} -> {f} when there is a format method * format method signature - anytype -> *std.io.Writer - inferred error set -> error{WriteFailed} - options -> (deleted) * std.fmt.Formatted - now takes context type explicitly - no fmt string | |||
| 2024-10-11 | link.Elf: group section indexes | Andrew Kelley | |
| so they cannot be forgotten when updating them after sorting them. | |||
| 2024-09-25 | elf: do not re-create synthetic sections if already created | Jakub Konka | |
| 2024-09-23 | elf: always override existing __start/__stop symbols | Jakub Konka | |
| 2024-09-23 | elf: only allocate __dso_handle symbol if not found in any object | Jakub Konka | |
| 2024-09-12 | Replace deprecated default initializations with decl literals | Linus Groh | |
| 2024-08-28 | std: update `std.builtin.Type` fields to follow naming conventions | mlugg | |
| The compiler actually doesn't need any functional changes for this: Sema does reification based on the tag indices of `std.builtin.Type` already! So, no zig1.wasm update is necessary. This change is necessary to disallow name clashes between fields and decls on a type, which is a prerequisite of #9938. | |||
| 2024-08-25 | elf: streamline sections container | Jakub Konka | |
| 2024-08-07 | elf: start-stop resolution has to come after init output sections | Jakub Konka | |
| 2024-08-07 | elf: fix symbol resolution for Objects | Jakub Konka | |
| 2024-08-07 | elf: move getStartStopBasename into Object | Jakub Konka | |
| 2024-08-07 | elf: fix compile errors | Jakub Konka | |
| 2024-08-07 | elf: redo symbol mgmt and ownership in ZigObject | Jakub Konka | |
| 2024-08-07 | elf: move symbol ownership to LinkerDefined | Jakub Konka | |
| 2024-07-30 | elf: include LinkerDefined in symbol resolution | Jakub Konka | |
| 2024-07-30 | elf: move entry tracking into LinkerDefined | Jakub Konka | |
| 2024-07-30 | elf: move initializing and allocating linker-defined symbols into LinkerDefined | Jakub Konka | |
| 2024-07-30 | elf: move merge subsections ownership into merge sections | Jakub Konka | |
| 2024-07-30 | elf: move ownership of atoms into objects | Jakub Konka | |
| 2024-04-20 | link/elf: port macho symbol extras handling | Jakub Konka | |
| 2024-01-01 | linker: fix some allocator references | Andrew Kelley | |
| 2023-11-15 | elf: we were writing too many symbols in the symtab | Jakub Konka | |
| 2023-11-07 | elf: actually track output symtab index of symbols | Jakub Konka | |
| 2023-11-04 | elf: redo strings management in the linker | Jakub Konka | |
| * atom names - are stored locally and pulled from defining object's strtab * local symbols - same * global symbols - in principle, we could store them locally, but for better debugging experience - when things go wrong - we store the offsets in a global strtab used by the symbol resolver | |||
| 2023-09-12 | elf: report undefined symbols in objects | Jakub Konka | |
| 2023-09-11 | elf: add prelim impl of Object parsing | Jakub Konka | |
| 2023-09-10 | elf: write linker-defined symbols to symtab | Jakub Konka | |
| 2023-09-10 | elf: create required linker-defined symbols | Jakub Konka | |
| 2023-09-06 | elf: make everything upside down - track by Symbol.Index rather than Atom.Index | Jakub Konka | |
| 2023-09-05 | elf: start porting abstraction of input file | Jakub Konka | |
