Binutils_jll.addr2lineMethod
addr2line(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of addr2line.

Example

addr2line() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.addr2lineMethod
addr2line(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of addr2line. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(addr2line()) $arguments`)
Julia 1.6
Binutils_jll.arMethod
ar(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of ar.

Example

ar() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.arMethod
ar(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of ar. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(ar()) $arguments`)
Julia 1.6
Binutils_jll.binutils_sizeMethod
binutils_size(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of binutils_size.

Example

binutils_size() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.binutils_sizeMethod
binutils_size(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of binutils_size. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(binutils_size()) $arguments`)
Julia 1.6
Binutils_jll.binutils_stripMethod
binutils_strip(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of binutils_strip.

Example

binutils_strip() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.binutils_stripMethod
binutils_strip(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of binutils_strip. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(binutils_strip()) $arguments`)
Julia 1.6
Binutils_jll.cxxfiltMethod
cxxfilt(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of cxxfilt.

Example

cxxfilt() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.cxxfiltMethod
cxxfilt(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of cxxfilt. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(cxxfilt()) $arguments`)
Julia 1.6
Binutils_jll.elfeditMethod
elfedit(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of elfedit.

Example

elfedit() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.elfeditMethod
elfedit(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of elfedit. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(elfedit()) $arguments`)
Julia 1.6
Binutils_jll.nmMethod
nm(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of nm.

Example

nm() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.nmMethod
nm(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of nm. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(nm()) $arguments`)
Julia 1.6
Binutils_jll.objcopyMethod
objcopy(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of objcopy.

Example

objcopy() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.objcopyMethod
objcopy(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of objcopy. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(objcopy()) $arguments`)
Julia 1.6
Binutils_jll.objdumpMethod
objdump(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of objdump.

Example

objdump() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.objdumpMethod
objdump(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of objdump. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(objdump()) $arguments`)
Julia 1.6
Binutils_jll.ranlibMethod
ranlib(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of ranlib.

Example

ranlib() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.ranlibMethod
ranlib(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of ranlib. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(ranlib()) $arguments`)
Julia 1.6
Binutils_jll.readelfMethod
readelf(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of readelf.

Example

readelf() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.readelfMethod
readelf(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of readelf. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(readelf()) $arguments`)
Julia 1.6
Binutils_jll.stringsMethod
strings(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of strings.

Example

strings() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Binutils_jll.stringsMethod
strings(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of strings. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(strings()) $arguments`)
Julia 1.6