Releases: JuliaIO/ObjectFile.jl
Releases · JuliaIO/ObjectFile.jl
v1.0 compatibility release
v0.3.0 Further 1.0 cleanup
Fix file descriptor leak
readmeta()
was generating a lot of file descriptors to be leaked out into the wild blue yonder. This version moves us to a new API;
readmeta("libfoo.so") do oh
# use oh here
end
This release also refuses to load fat Mach-O files with a MagicMismatch
instead of throwing a RefError
on opening them.
Add `isdynamic()` function
Merge pull request #6 from Keno/kf/isdynamic Add an isdynamic function
Use `AbstractString` not `String` in most methods
v0.1.2 Use `AbstractString` instead of `String` in most methods
Remove `unpack()` export
v0.1.1 Improve printing and remove unnecessary `unpack()` export
Initial Release
Initial API set out for ELF, MachO and COFF files