-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update S2 to use external Abseil #134
Conversation
Codecov Report
@@ Coverage Diff @@
## master #134 +/- ##
=======================================
Coverage 94.04% 94.04%
=======================================
Files 40 40
Lines 2987 2987
=======================================
Hits 2809 2809
Misses 178 178 Continue to review full report at Codecov.
|
@paleolimbot is this ready to go? Final deadline from CRAN is Sep 30. |
I was still waiting for literally any action upstream on S2 since it sounded like there may have been hope. Abseil is the "hard" part in the sense that it contains a lot of compiler-specific code that needs some workarounds for CRAN. I did that first and it looks like it will work. If the upstream PR isn't merged I'll probably recreate it by changing the header includes rather than update based on the untested PR. |
OK. Shall we plan to merge this & submit by Sep 23, then? |
There's no point in merging this yet because it doesn't actually fix the issue...it includes Abseil, which is the "fix", but it doesn't use Abseil (yet). I can devote Monday to this and will make sure we have some checks in motion by then. |
I can confirm that this fixes #79 via a Dockerfile based on debian/testing: FROM cran/debian
RUN apt update && apt install -y gcc-11 g++-11
RUN mkdir ~/.R && echo 'CXX11=g++-11' > ~/.R/Makevars && echo 'CXX=g++-11' >> ~/.R/Makevars && echo 'CC=gcc-11' >> ~/.R/Makevars
RUN echo 'CCFLAGS = -Wall -pedantic -O2' >> ~/.R/Makevars && echo 'CXXFLAGS = -Wall -pedantic -O2' >> ~/.R/Makevars && echo 'CXX11FLAGS = -Wall -pedantic -O2' >> ~/.R/Makevars I also checked |
No description provided.