Last updated on 2026-02-02 16:50:01 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.2.0 | 1.31 | 23.83 | 25.14 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.2.0 | 1.25 | 18.56 | 19.81 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.2.0 | 37.91 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 0.2.0 | 36.87 | ERROR | |||
| r-devel-windows-x86_64 | 0.2.0 | 5.00 | 50.00 | 55.00 | OK | |
| r-patched-linux-x86_64 | 0.2.0 | 1.39 | 20.49 | 21.88 | OK | |
| r-release-linux-x86_64 | 0.2.0 | 1.18 | 20.09 | 21.27 | OK | |
| r-release-macos-arm64 | 0.2.0 | OK | ||||
| r-release-macos-x86_64 | 0.2.0 | 1.00 | 29.00 | 30.00 | OK | |
| r-release-windows-x86_64 | 0.2.0 | 2.00 | 48.00 | 50.00 | OK | |
| r-oldrel-macos-arm64 | 0.2.0 | NOTE | ||||
| r-oldrel-macos-x86_64 | 0.2.0 | 1.00 | 34.00 | 35.00 | NOTE | |
| r-oldrel-windows-x86_64 | 0.2.0 | 4.00 | 53.00 | 57.00 | NOTE |
Version: 0.2.0
Check: examples
Result: ERROR
Running examples in ‘plogr-Ex.R’ failed
The error most likely occurred in:
> ### Name: plogr-package
> ### Title: plogr: The 'plog' C++ Logging Library
> ### Aliases: plogr plogr-package
>
> ### ** Examples
>
> plogr_demo <- Rcpp::cppFunction(depends = "plogr", '
+ // C++ code begin
+ #include <plogr.h>
+
+ RObject plogr_demo() {
+ plog::init_r(plog::info);
+ LOG_INFO << "shown";
+ LOG_DEBUG << "not shown";
+ plog::init_r("DEBUG");
+ LOG_DEBUG << "shown now";
+ return R_NilValue;
+ }
+
+ #include <Rcpp.h> // not necessary to use plogr
+ // C++ code end
+ '
+ )
using C++ compiler: ‘g++ (GCC) 15.1.1 20250521 (Red Hat 15.1.1-2)’
make[1]: Entering directory '/tmp/RtmppIRliA/working_dir/RtmpwqFgQk/sourceCpp-x86_64-pc-linux-gnu-1.1.1/sourcecpp_1d519e52afe68d'
g++ -std=gnu++20 -I"/data/gannet/ripley/R/R-devel/include" -DNDEBUG -I"/data/gannet/ripley/R/test-dev/Rcpp/include" -I"/data/gannet/ripley/R/packages/tests-devel/plogr.Rcheck/plogr/include" -I"/tmp/RtmppIRliA/working_dir/RtmpwqFgQk/sourceCpp-x86_64-pc-linux-gnu-1.1.1" -I/usr/local/include -fpic -g -O2 -Wall -pedantic -mtune=native -Wno-ignored-attributes -Wno-parentheses -Wp,-D_FORTIFY_SOURCE=3 -fexceptions -fstack-protector-strong -fstack-clash-protection -fcf-protection -c file1d519e1185b5f2.cpp -o file1d519e1185b5f2.o
In file included from /data/gannet/ripley/R/packages/tests-devel/plogr.Rcheck/plogr/include/plog/Log.h:7,
from /data/gannet/ripley/R/packages/tests-devel/plogr.Rcheck/plogr/include/plogr.h:4,
from file1d519e1185b5f2.cpp:4:
/data/gannet/ripley/R/packages/tests-devel/plogr.Rcheck/plogr/include/plog/Record.h: In instantiation of ‘plog::Record& plog::Record::operator<<(const T&) [with T = wchar_t [2]]’:
/data/gannet/ripley/R/packages/tests-devel/plogr.Rcheck/plogr/include/plog/Record.h:30:22: required from here
30 | *this << str;
| ^~~
/data/gannet/ripley/R/packages/tests-devel/plogr.Rcheck/plogr/include/plog/Record.h:37:23: error: use of deleted function ‘std::basic_ostream<char, _Traits>& std::operator<<(basic_ostream<char, _Traits>&, const wchar_t*) [with _Traits = char_traits<char>]’
37 | m_message << data;
| ~~~~~~~~~~^~~~~~~
In file included from /usr/include/c++/15/ostream:42,
from /usr/include/c++/15/iostream:43,
from /data/gannet/ripley/R/test-dev/Rcpp/include/RcppCommon.h:53,
from /data/gannet/ripley/R/test-dev/Rcpp/include/Rcpp.h:27,
from file1d519e1185b5f2.cpp:3:
/usr/include/c++/15/bits/ostream.h:761:5: note: declared here
761 | operator<<(basic_ostream<char, _Traits>&, const wchar_t*) = delete;
| ^~~~~~~~
/data/gannet/ripley/R/packages/tests-devel/plogr.Rcheck/plogr/include/plog/Record.h:37:23: note: use ‘-fdiagnostics-all-candidates’ to display considered candidates
37 | m_message << data;
| ~~~~~~~~~~^~~~~~~
make[1]: *** [/data/gannet/ripley/R/R-devel/etc/Makeconf:201: file1d519e1185b5f2.o] Error 1
make[1]: Target 'all' not remade because of errors.
make[1]: Leaving directory '/tmp/RtmppIRliA/working_dir/RtmpwqFgQk/sourceCpp-x86_64-pc-linux-gnu-1.1.1/sourcecpp_1d519e52afe68d'
Error in sourceCpp(code = code, env = env, rebuild = rebuild, cacheDir = cacheDir, :
Error 1 occurred building shared library.
Calls: <Anonymous> -> sourceCpp
Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc
Version: 0.2.0
Check: LazyData
Result: NOTE
'LazyData' is specified without a 'data' directory
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64