Skip to content

Commit

Permalink
.clangd
Browse files Browse the repository at this point in the history
  • Loading branch information
gagolews committed May 18, 2021
1 parent ba892da commit d143d2f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ kate-swp$
^src/boost
^src-i386
^src-x64
^src/\.clangd$
^src/.*\.o$
^src/.*\.a$
^src/.*\.so$
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: stringi
Version: 1.6.2
Date: 2021-05-14
Version: 1.6.3
Date: 2021-05-18
Title: Character String Processing Facilities
Description: A multitude of character string/text/natural language
processing tools: pattern searching (e.g., with 'Java'-like regular
Expand Down
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ autoconf:
)"

r: autoconf
R CMD INSTALL . --configure-args='--disable-pkg-config --enable-gcc-debug --enable-gcc-pedantic' --html
R CMD INSTALL . --html \
--configure-args="--disable-pkg-config \
--enable-gcc-debug \
--enable-gcc-pedantic"

r-icu-system:
R CMD INSTALL .
Expand All @@ -43,7 +46,10 @@ check: stop-on-utf8 build
cd .. && R CMD check `ls -t ${PKGNAME}*.tar.gz | head -1` --no-manual

check-cran: stop-on-utf8 build
cd .. && STRINGI_DISABLE_PKG_CONFIG=1 R_DEFAULT_INTERNET_TIMEOUT=240 _R_CHECK_CRAN_INCOMING_REMOTE_=FALSE R CMD check `ls -t ${PKGNAME}*.tar.gz | head -1` --as-cran
cd .. && STRINGI_DISABLE_PKG_CONFIG=1 \
R_DEFAULT_INTERNET_TIMEOUT=240 \
_R_CHECK_CRAN_INCOMING_REMOTE_=FALSE \
R CMD check `ls -t ${PKGNAME}*.tar.gz | head -1` --as-cran


############## Rd2rst: https://github.com/gagolews/Rd2rst ######################
Expand Down
3 changes: 3 additions & 0 deletions src/.clangd
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
CompileFlags:
Add: [-xc++, --std=c++11, -Wall, -Wextra, -pedantic,
--include-directory=/usr/share/R/include/]

0 comments on commit d143d2f

Please sign in to comment.