Capstone_jll.cstoolMethod
cstool(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of cstool.

Example

cstool() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Capstone_jll.cstoolMethod
cstool(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

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