Skip to content

Commit

Permalink
add in news
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris1221 committed Nov 23, 2016
1 parent d52ae0b commit 45492fb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `goldi` v1.0.1

* This is a minor release intended to fix an issue with unstated `-llapack` dependency which caused issues on solaris platforms. Please see `Makevars` and `Makevars.win` for changes.
4 changes: 4 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Release Summary

This is the second release of `goldi`. It resolves an unstated LLAPACK dependency which caused CRAN checks to fail on solaris-sparc and solaris-x86. My apologies for the error.

## Test environments
* Local OS X Install, R 3.3.1 + R Devel
* Linux Ubuntu 12.04 LTS Server Edition 64 bit (through Travis-CI), R 3.3.1 + R Devel
Expand Down
2 changes: 1 addition & 1 deletion src/Makevars
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PKG_LIBS= -Wsign-compare -llapack
PKG_LIBS= $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
PKG_CXXFLAGS=-I../inst/include -DARMA_64BIT_WORD
CXX_STD = CXX11

2 changes: 1 addition & 1 deletion src/Makevars.win
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PKG_LIBS= -Wsign-compare
PKG_LIBS= $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
PKG_CXXFLAGS=-I../inst/include -DARMA_64BIT_WORD
CXX_STD = CXX11

0 comments on commit 45492fb

Please sign in to comment.