Learn R Programming

⚠️There's a newer version (1.4.7) of this package.Take me there.

pkgbuild

The goal of pkgbuild is to make it easy to build packages with compiled code. It provides tools to configure your R session, and check that everything is working ok. If you are using RStudio, it also helps you trigger automatic install of the build tools.

Installation

You can install pkgbuild from github with:

# install.packages("devtools")
devtools::install_github("r-lib/pkgbuild")

Example

# Check that you have the build tools installed
pkgbuild::check_build_tools(debug = TRUE)

# Build a package
pkgbuild::build("/path/to/my/package")

# Run your own code in an environment guaranteed to 
# have build tools available
pkgbuild::with_build_tools(my_code)

Copy Link

Version

Install

install.packages('pkgbuild')

Monthly Downloads

494,802

Version

1.0.2

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

James Hester

Last Published

October 16th, 2018

Functions in pkgbuild (1.0.2)

compile_dll

Compile a .dll/.so from source.
without_compiler

Tools for testing pkgbuild
pkg_has_src

Does a source package have src/ directory?
rcmd_build_tools

Call R CMD <command> with build tools active
has_compiler

Is a compiler available?
with_debug

Temporarily set debugging compilation flags.
build

Build package
has_latex

Is latex installed?
has_build_tools

Are build tools are available?
needs_compile

Does the package need recompiling? (i.e. is there a source or header file newer than the dll)
compiler_flags

Default compiler flags used by devtools.
clean_dll

Remove compiled objects from /src/ directory
pkg_links_to_rcpp

Test if a package path is linking to Rcpp
rtools_path

Is Rtools installed?
pkgbuild_process

Build package in the background