Skip to content

Commit d84a68a

Browse files
committed
turns out we RcppLdFlags and LdFlags -- so both exported and documented now
1 parent 5a557b0 commit d84a68a

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

ChangeLog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
2013-10-08 Dirk Eddelbuettel <edd@debian.org>
22

3-
* NAMESPACE: Export LdFlags, not RcppLdFlags
4-
* man/LdFlags.Rd: Renamed from RcppLdFlags, and changed
3+
* NAMESPACE: Export LdFlags as well as RcppLdFlags
4+
* man/RcppLdFlags.Rd: Updated
55

66
2013-10-06 John M Chambers <jmc@r-project.org>
77

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export(Module,
2626
sourceCpp,
2727
compileAttributes,
2828
registerPlugin,
29+
RcppLdFlags,
2930
LdFlags,
3031
demangle,
3132
sizeof,

inst/NEWS.Rd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
\title{News for Package 'Rcpp'}
33
\newcommand{\cpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}}
44

5-
\section{Changes in Rcpp version 0.10.5.1 (2013-10-07)}{
5+
\section{Changes in Rcpp version 0.10.5.2 (2013-10-08)}{
66
\itemize{
77
\item Changes in Rcpp API:
88
\itemize{
@@ -11,15 +11,15 @@
1111
class, and writes C++ and R files in the package. Inherited
1212
classes can be dealt with, but require data type information.
1313
This approach avoids hand-coding module files.
14-
1514
\item Two missing \code{is<>()} templates for
16-
\code{CharacterVector} and \code{CharacterMatrix} have been added,
17-
and some tests for \code{is_na()} and \code{is_finite()} have been
18-
corrected thanks to Thomas Tse.
15+
\code{CharacterVector} and \code{CharacterMatrix} have been added,
16+
and some tests for \code{is_na()} and \code{is_finite()} have been
17+
corrected thanks to Thomas Tse.
1918
}
2019
\item Changes in R code:
2120
\itemize{
22-
\item Export linking helper function \code{LdFlags}, not \code{RcppLdFlags}
21+
\item Export linking helper function \code{LdFlags} as well as
22+
\code{RcppLdFlags}.
2323
}
2424
}
2525
}

man/LdFlags.Rd renamed to man/RcppLdFlags.Rd

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
\name{LdFlags}
22
\alias{LdFlags}
3+
\alias{RcppLdFlags}
34
\title{Provide Rcpp Linker Flags}
45
\description{
5-
\code{LdFlags} returns the required flags and options for the the
6-
system linker. This allows portable use of \pkg{Rcpp} as package
7-
location as well as operating-system specific details are abstracted
8-
away behind the interface of this function.
6+
\code{LdFlags} and \code{RcppLdFlags} return the required flags and
7+
options for the the system linker. This allows portable use of
8+
\pkg{Rcpp} as package location as well as operating-system specific
9+
details are abstracted away behind the interface of this function.
910

10-
It is commonly called from the files \code{Makevars} (or
11+
\code{LdFlags} is commonly called from the files \code{Makevars} (or
1112
\code{Makevars.win}) rather than in an interactive session.
1213
}
1314
\usage{
1415
LdFlags(static=staticLinking())
16+
RcppLdFlags(static=staticLinking())
1517
}
1618
\arguments{
1719
\item{static}{A boolean determining use of static (as opposed to
@@ -24,7 +26,7 @@ LdFlags(static=staticLinking())
2426
create a library based on \pkg{Rcpp}.
2527
}
2628
\details{
27-
This function is not meant to used interactively, and is intended
29+
Thee functions are not meant to used interactively, and are intended
2830
solely for use by the build tools.
2931
}
3032
\references{

0 commit comments

Comments
 (0)