GDB_jll.gdbMethod
gdb(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of gdb.

Example

gdb() do exe
    run(`$exe $arguments`)
end
Julia 1.3
GDB_jll.gdbMethod
gdb(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(gdb()) $arguments`)
Julia 1.6
GDB_jll.gdbserverMethod
gdbserver(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of gdbserver.

Example

gdbserver() do exe
    run(`$exe $arguments`)
end
Julia 1.3
GDB_jll.gdbserverMethod
gdbserver(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(gdbserver()) $arguments`)
Julia 1.6
GDB_jll.is_availableFunction
is_available()

Return whether the artifact is available for the current platform.