Skip to content

Commit

Permalink
Get rid of GNU make as part of SystemRequirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jwijffels committed May 31, 2019
1 parent d1b8ed0 commit 48dcaa4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: ruimtehol
Type: Package
Title: Learn Text 'Embeddings' with 'Starspace'
Version: 0.2
Version: 0.2.1
Maintainer: Jan Wijffels <[email protected]>
Authors@R: c(
person('Jan', 'Wijffels', role = c('aut', 'cre', 'cph'), email = '[email protected]', comment = "R wrapper"),
Expand All @@ -23,4 +23,4 @@ Imports: Rcpp (>= 0.11.5), utils, graphics, stats
Suggests: udpipe, data.table
LinkingTo: Rcpp, BH
RoxygenNote: 6.0.1
SystemRequirements: C++11, GNU make
SystemRequirements: C++11
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## CHANGES IN ruimtehol VERSION 0.2.1

- remove the GNU make as part of the SystemRequirements

## CHANGES IN ruimtehol VERSION 0.2

- Allow to do transfer learning by passing an embedding matrix and keep on training based on that matrix
Expand Down
10 changes: 5 additions & 5 deletions src/Makevars
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ CXX_STD = CXX11
PKG_LIBS = -pthread
PKG_CPPFLAGS = -pthread -DSTRICT_R_HEADERS -DBOOST_NO_AUTO_PTR -include compliance.h -I./Starspace/src

SOURCES = Starspace/src/utils/args.cpp Starspace/src/utils/normalize.cpp Starspace/src/utils/utils.cpp
SOURCES += Starspace/src/data.cpp Starspace/src/dict.cpp Starspace/src/doc_data.cpp Starspace/src/doc_parser.cpp Starspace/src/model.cpp Starspace/src/parser.cpp Starspace/src/proj.cpp Starspace/src/starspace.cpp
SOURCES += rcpp_textspace.cpp
SOURCES += compliance.cpp
SOURCES += RcppExports.cpp
SOURCES = Starspace/src/utils/args.cpp Starspace/src/utils/normalize.cpp Starspace/src/utils/utils.cpp \
Starspace/src/data.cpp Starspace/src/dict.cpp Starspace/src/doc_data.cpp Starspace/src/doc_parser.cpp Starspace/src/model.cpp Starspace/src/parser.cpp Starspace/src/proj.cpp Starspace/src/starspace.cpp \
rcpp_textspace.cpp \
compliance.cpp \
RcppExports.cpp

OBJECTS = $(SOURCES:.cpp=.o)

Expand Down

0 comments on commit 48dcaa4

Please sign in to comment.