BOLT_jll.is_availableFunction
is_available()

Return whether the artifact is available for the current platform.

BOLT_jll.llvm_boltMethod
llvm_bolt(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of llvm_bolt.

Example

llvm_bolt() do exe
    run(`$exe $arguments`)
end
Julia 1.3
BOLT_jll.llvm_boltMethod
llvm_bolt(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(llvm_bolt()) $arguments`)
Julia 1.6
BOLT_jll.llvm_bolt_heatmapMethod
llvm_bolt_heatmap(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of llvmboltheatmap.

Example

llvm_bolt_heatmap() do exe
    run(`$exe $arguments`)
end
Julia 1.3
BOLT_jll.llvm_bolt_heatmapMethod
llvm_bolt_heatmap(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(llvm_bolt_heatmap()) $arguments`)
Julia 1.6
BOLT_jll.llvm_boltdiffMethod
llvm_boltdiff(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of llvm_boltdiff.

Example

llvm_boltdiff() do exe
    run(`$exe $arguments`)
end
Julia 1.3
BOLT_jll.llvm_boltdiffMethod
llvm_boltdiff(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(llvm_boltdiff()) $arguments`)
Julia 1.6
BOLT_jll.merge_fdataMethod
merge_fdata(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of merge_fdata.

Example

merge_fdata() do exe
    run(`$exe $arguments`)
end
Julia 1.3
BOLT_jll.merge_fdataMethod
merge_fdata(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(merge_fdata()) $arguments`)
Julia 1.6
BOLT_jll.perf2boltMethod
perf2bolt(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of perf2bolt.

Example

perf2bolt() do exe
    run(`$exe $arguments`)
end
Julia 1.3
BOLT_jll.perf2boltMethod
perf2bolt(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

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