index
:
zig
0.10.x
0.11.x
0.12.x
0.14.x
0.15.x
0.7.x
0.8.x
0.9.x
ArrayList-reserve
Io.net
aro
ast-node-methods
async-await-demo
autofix
ci-perf-comment
ci-scripts
ci-tarballs
cli
comptime-allocator
elfv2-dyn
fixes
fuzz-macos
hcs
incr-bug
io-threaded-no-queue
jobserver
json-diagnostics
llvm-ir-nosanitize-metadata
macos-debug-info
main
make-vs-configure
master
more-doctests
new-pkg-hash
powerpc64le
restricted-function-pointers
rework-comptime-mutation
sans-aro
sha1-stream
spork8
stage2-async
threadpool
threadtheft
wasm-linker-writer
wrangle-writer-buffering
General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. https://ziglang.org
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
link
/
Elf
/
SharedObject.zig
Age
Commit message (
Expand
)
Author
2025-09-21
Elf2: create a new linker from scratch
Jacob Young
2025-09-04
link.Elf: truncate st_other to u3 before converting to std.elf.STV
Alex Rønne Petersen
2025-08-31
std.fmt: delete deprecated APIs
Andrew Kelley
2025-08-29
std.Io: delete GenericReader
Andrew Kelley
2025-08-11
std.ArrayList: make unmanaged the default
Andrew Kelley
2025-07-07
compiler: update a bunch of format strings
Andrew Kelley
2025-07-07
compiler: update all instances of std.fmt.Formatter
Andrew Kelley
2025-06-19
Target: pass and use locals by pointer instead of by value
Jacob Young
2024-11-16
link: fix memory bugs
Jacob Young
2024-10-12
fix 32-bit build
Andrew Kelley
2024-10-12
link.Elf: eliminate an O(N^2) algorithm in flush()
Andrew Kelley
2024-10-10
link: fix false positive crtbegin/crtend detection
Andrew Kelley
2024-10-08
link.Elf: avoid needless file system reads in flush()
Andrew Kelley
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
2024-08-23
link: Rename InvalidCpuArch error to InvalidMachineType.
Alex Rønne Petersen
2024-08-23
std.{coff,elf}: Remove the {MachineType,EM}.toTargetCpuArch() functions.
Alex Rønne Petersen
2024-08-07
elf: get hello-world glibc working again
Jakub Konka
2024-08-07
elf: fix symbol resolution for Objects
Jakub Konka
2024-08-07
elf: do not re-init Symbol when initializing
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-08-07
elf: move symbol ownership to SharedObject
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: implement string merging
Jakub Konka
2024-04-20
link/elf: port macho symbol extras handling
Jakub Konka
2024-02-12
elf: do not prealloc input objects, pread selectively
Jakub Konka
2024-01-15
add `SHT_NOBITS` check
David Rubin
2024-01-01
linker: fix some allocator references
Andrew Kelley
2024-01-01
linker: update target references
Andrew Kelley
2023-12-05
elf: upcast e_shnum to u64 to check for valid ranges
Jakub Konka
2023-12-05
elf: re-instate basic error reporting for LD script parser
Jakub Konka
2023-12-05
elf: move basic parse error reporting to SharedObject
Jakub Konka
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-05
elf: init objects after parsing them
Jakub Konka
2023-11-04
elf: redo strings management in the linker
Jakub Konka
2023-10-24
elf: improve parsing of ld scripts and actually test linking against them
Jakub Konka
2023-10-18
elf: parse GNU ld script as system lib indirection
Jakub Konka
2023-10-16
elf: fix 32bit build
Jakub Konka
2023-10-16
elf: fix synthetic section handling and actually parse DSOs
Jakub Konka
2023-10-16
elf: re-enable dynamic linking codepaths
Jakub Konka