Skip to contents

Check the local installation for perl and verify C compiler is installed and working.

Usage

system_check_requirements(
  checklist = list(perl = list(check = TRUE, perlcmd = "perl"), C = list(check = TRUE)),
  verbose = TRUE
)

Arguments

checklist

list with names corresponding to elements of the system to check.

verbose

enable verbose messaging

Value

List fn result of all packages

Examples

# \donttest{
invisible(system_check_requirements())
#> #> system_check_requirements()
#> #> Testing perl, looking for a perl interpreter
#> #> Perl interpreter found, now testing it
#> #>    > Success: Perl runs, everything should be good
#> #> Attempting to compile C file
#> #>    > Success: C file compiled
#> #> Loading the library 
#> #>    > Success: C library loaded
# }