Skip to content

Releases: JuliaIO/ObjectFile.jl

v1.0 compatibility release

08 Aug 12:52
Compare
Choose a tag to compare
v0.3.0

Further 1.0 cleanup

Fix file descriptor leak

01 Jun 19:19
2b58bd3
Compare
Choose a tag to compare

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

17 Dec 23:59
76b59ec
Compare
Choose a tag to compare
Merge pull request #6 from Keno/kf/isdynamic

Add an isdynamic function

Use `AbstractString` not `String` in most methods

15 Oct 04:41
Compare
Choose a tag to compare
v0.1.2

Use `AbstractString` instead of `String` in most methods

Remove `unpack()` export

15 Oct 02:06
Compare
Choose a tag to compare
v0.1.1

Improve printing and remove unnecessary `unpack()` export

Initial Release

13 Oct 19:35
Compare
Choose a tag to compare

Initial API set out for ELF, MachO and COFF files