CDE_jll.is_availableFunction
is_available()

Return whether the artifact is available for the current platform.

CDE_jll.run_cdeMethod
run_cde(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of run_cde.

Example

run_cde() do exe
    run(`$exe $arguments`)
end
Julia 1.3
CDE_jll.run_cdeMethod
run_cde(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

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