with_debug
From pkgbuild v1.0.2
by James Hester
Temporarily set debugging compilation flags.
Temporarily set debugging compilation flags.
Usage
with_debug(code, CFLAGS = NULL, CXXFLAGS = NULL, FFLAGS = NULL,
FCFLAGS = NULL, debug = TRUE)
Arguments
- code
to execute.
- CFLAGS
flags for compiling C code
- CXXFLAGS
flags for compiling C++ code
- FFLAGS
flags for compiling Fortran code.
- FCFLAGS
flags for Fortran 9x code.
- debug
If
TRUE
adds-g -O0
to all flags (AddingFFLAGS
andFCFLAGS
See Also
Other debugging flags: compiler_flags
Examples
# NOT RUN {
flags <- names(compiler_flags(TRUE))
with_debug(Sys.getenv(flags))
# }
# NOT RUN {
install("mypkg")
with_debug(install("mypkg"))
# }
Community examples
Looks like there are no examples yet.