GDB_jll.gdb
— Methodgdb(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
GDB_jll.gdb
— Methodgdb(; 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`)
GDB_jll.gdbserver
— Methodgdbserver(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
GDB_jll.gdbserver
— Methodgdbserver(; 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`)
GDB_jll.is_available
— Functionis_available()
Return whether the artifact is available for the current platform.