Testing a nice interactive graph created with rCharts & d3, with data from x512paths: NY Times 512 Paths to the White House.
Recreated in R with rCharts and slidify.
For more information, see:
Now we show the chart in this wiki page through an iframe:
Recreated in R with rCharts and slidify.
For more information, see:
- http://timelyportfolio.blogspot.com.es/2013/04/d3-r-with-rcharts-and-slidify.html
- http://timelyportfolio.github.io/rCharts_512paths/
RR Code# Testing rCharts & d3, from http://timelyportfolio.blogspot.com.es/2013/04/d3-r-with-rcharts-and-slidify.html # Set a mirror, in case the required packages have dependencies, and those dependencies do not indicate which mirror to install the package from. r <- getOption("repos") r["CRAN"] <- "http://ftp.heanet.ie/mirrors/cran.r-project.org/" options(repos=r) # Update packages first update.packages(ask = FALSE, repos = 'http://cran.rstudio.org') # if you have not installed slidify, slidifyLibraries, or rCharts if(!require(devtools)){ install.packages("devtools", repos="http://ftp.heanet.ie/mirrors/cran.r-project.org/") } require('devtools', quietly = TRUE ) if(!require(slidify)){ install_github('slidify', 'ramnathv', ref = 'dev') } require(slidify, quietly = TRUE) if(!require(rCharts)){ install_github('rCharts', 'ramnathv') } if(!require(codetools)){ install.packages("codetools", repos="http://ftp.heanet.ie/mirrors/cran.r-project.org/") } require(codetools, quietly = TRUE ) if(!require(slidifyLibraries)){ install_github('slidifyLibraries', 'ramnathv', ref = 'dev') } # optional # get data from downloaded NYT tsv and inject in through params # download repo and unzip to Downloads folder if(!require(downloader)){ install.packages("downloader", repos="http://ftp.heanet.ie/mirrors/cran.r-project.org/") } require(downloader, quietly = TRUE ) download( 'https://github.com/timelyportfolio/rCharts_512paths/archive/gh-pages.zip', 'rCharts_512paths.zip' ) # If you are in multitiki, jump 3 directories for the directory to save the files #unzip('rCharts_512paths.zip', exdir = '../../../public/') # Alternatively, jump just two. unzip('rCharts_512paths.zip', exdir = '../../public/') # Set the working directory # If you are in multitiki, jump 3 directories #setwd('../../../public/rCharts_512paths-gh-pages') # Alternatively, jump just two. setwd('../../public/rCharts_512paths-gh-pages') # plot the data require(rCharts, quietly = TRUE ) data <- read.delim(file = "data/states.tsv") p1 <- rCharts$new() getwd(); p1$field("lib", "libraries/widgets/x512paths") p1$set(data = toJSONArray(data), dom = NULL) # We have to fix some relative path which seems to be wrong for its equivalent absolute path p1$LIB[2] <- paste("https://r.tiki.org/temp/public/rCharts_512paths-gh-pages", "/", p1$lib, sep="") p1$templates$script <- paste(p1$LIB[2], p1$templates$script, sep="") # Here we don't create the chart on the fly with a random page name in an uncontroled directory server side, but instead, we save the p1 object as html page ni a defined-by-us path & filename. # Path, by default, is the working directory #p1 p1$save('mychart.html')
rm -f filelock.so init.o filelock-unix.o locklist.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c init.c -o init.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c filelock-unix.c -o filelock-unix.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c locklist.c -o locklist.o gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o filelock.so init.o filelock-unix.o locklist.o -L/usr/lib/R/lib -lR gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c colamd.c -o colamd.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c commonlib.c -o commonlib.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c hbio.c -o hbio.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c ini.c -o ini.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c init.c -o init.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c isfixedvar.c -o isfixedvar.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_Hash.c -o lp_Hash.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_LUSOL.c -o lp_LUSOL.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_MDO.c -o lp_MDO.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_MPS.c -o lp_MPS.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_SOS.c -o lp_SOS.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_crash.c -o lp_crash.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_lib.c -o lp_lib.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_matrix.c -o lp_matrix.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_mipbb.c -o lp_mipbb.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_params.c -o lp_params.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_presolve.c -o lp_presolve.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_price.c -o lp_price.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_pricePSE.c -o lp_pricePSE.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_report.c -o lp_report.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_rlp.c -o lp_rlp.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_scale.c -o lp_scale.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_simplex.c -o lp_simplex.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_utils.c -o lp_utils.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lp_wlp.c -o lp_wlp.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lpslink56.c -o lpslink56.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lusol.c -o lusol.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c lusolio.c -o lusolio.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c mmio.c -o mmio.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c myblas.c -o myblas.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c sparselib.c -o sparselib.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I . -DINTEGERTIME -DPARSER_LP -DBUILDING_FOR_R -DYY_NEVER_INTERACTIVE -DUSRDLL -DCLOCKTIME -DRoleIsExternalInvEngine -DINVERSE_ACTIVE=INVERSE_LUSOL -DINLINE=static -DParanoia -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c yacc_read.c -o yacc_read.o gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o lpSolve.so colamd.o commonlib.o hbio.o ini.o init.o isfixedvar.o lp_Hash.o lp_LUSOL.o lp_MDO.o lp_MPS.o lp_SOS.o lp_crash.o lp_lib.o lp_matrix.o lp_mipbb.o lp_params.o lp_presolve.o lp_price.o lp_pricePSE.o lp_report.o lp_rlp.o lp_scale.o lp_simplex.o lp_utils.o lp_wlp.o lpslink56.o lusol.o lusolio.o mmio.o myblas.o sparselib.o yacc_read.o -L/usr/lib/R/lib -lR gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c brio.c -o brio.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c file_line_endings.c -o file_line_endings.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c init.c -o init.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c read_file.c -o read_file.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c read_file_raw.c -o read_file_raw.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c read_lines.c -o read_lines.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c write_file.c -o write_file.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c write_lines.c -o write_lines.o gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o brio.so brio.o file_line_endings.o init.o read_file.o read_file_raw.o read_lines.o write_file.o write_lines.o -L/usr/lib/R/lib -lR gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c apply.c -o apply.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c arrayIndex.c -o arrayIndex.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c distance.c -o distance.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c dll.c -o dll.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c util.c -o util.o gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o proxy.so apply.o arrayIndex.o distance.o dll.o util.o -L/usr/lib/R/lib -lR gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c bbox-handler.c -o bbox-handler.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c count-handler.c -o count-handler.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c cpp11.cpp -o cpp11.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c debug-filter.c -o debug-filter.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c flatten-filter.c -o flatten-filter.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c handle-crc.c -o handle-crc.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c handle-rct.c -o handle-rct.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c handle-sfc.c -o handle-sfc.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c handle-wkb.c -o handle-wkb.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c handle-wkt.cpp -o handle-wkt.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c handle-xy.c -o handle-xy.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c identity-filter.c -o identity-filter.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c make-collection-filter.c -o make-collection-filter.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c make-linestring-filter.c -o make-linestring-filter.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c make-polygon-filter.c -o make-polygon-filter.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c meta-handler.c -o meta-handler.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c problems-handler.c -o problems-handler.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c sfc-writer.c -o sfc-writer.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c trans-affine.c -o trans-affine.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c trans-set.c -o trans-set.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c transform.c -o transform.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vertex-filter.c -o vertex-filter.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c void-handler.c -o void-handler.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c wk-v1.c -o wk-v1.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c wkb-writer.c -o wkb-writer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c wkt-writer.cpp -o wkt-writer.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../inst/include/ -I"/usr/local/lib/R/site-library/cpp11/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c xy-writer.c -o xy-writer.o g++ -std=gnu++11 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o wk.so bbox-handler.o count-handler.o cpp11.o debug-filter.o flatten-filter.o handle-crc.o handle-rct.o handle-sfc.o handle-wkb.o handle-wkt.o handle-xy.o identity-filter.o make-collection-filter.o make-linestring-filter.o make-polygon-filter.o meta-handler.o problems-handler.o sfc-writer.o trans-affine.o trans-set.o transform.o vertex-filter.o void-handler.o wk-v1.o wkb-writer.o wkt-writer.o xy-writer.o -L/usr/lib/R/lib -lR fatal: $HOME not set fatal: $HOME not set configure: CC: gcc -std=gnu99 configure: CXX: g++ -std=gnu++11 checking for gdal-config... /usr/bin/gdal-config checking gdal-config usability... yes configure: GDAL: 2.2.3 checking GDAL version >= 2.0.1... yes checking for gcc... gcc -std=gnu99 checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc -std=gnu99 accepts -g... yes checking for gcc -std=gnu99 option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -std=gnu99 -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking gdal.h usability... yes checking gdal.h presence... yes checking for gdal.h... yes checking GDAL: linking with --libs only... yes checking GDAL: /usr/share/gdal/2.2/pcs.csv readable... yes checking GDAL: checking whether PROJ is available for linking:... yes checking GDAL: checking whether PROJ is available fur running:... yes configure: GDAL: 2.2.3 configure: pkg-config proj exists, will use it checking proj_api.h usability... yes checking proj_api.h presence... yes checking for proj_api.h... yes configure: PROJ: 4.9.3 checking for pj_init_plus in -lproj... yes checking PROJ: epsg found and readable... yes checking for geos-config... /usr/bin/geos-config checking geos-config usability... yes configure: GEOS: 3.6.2 checking GEOS version >= 3.4.0... yes checking geos_c.h usability... yes checking geos_c.h presence... yes checking for geos_c.h... yes checking geos: linking with -L/usr/lib/x86_64-linux-gnu -lgeos_c... yes configure: Package CPP flags: -I/usr/include/gdal -I/usr/include configure: Package LIBS: -lproj -L/usr/lib -lgdal -L/usr/lib/x86_64-linux-gnu -lgeos_c configure: creating ./config.status config.status: creating src/Makevars g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppExports.cpp -o RcppExports.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppFunctions.cpp -o RcppFunctions.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppModule.cpp -o RcppModule.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c arith.cpp -o arith.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c crs.cpp -o crs.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c distRaster.cpp -o distRaster.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c distance.cpp -o distance.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c extract.cpp -o extract.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c file_utils.cpp -o file_utils.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c focal.cpp -o focal.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c gcp.cpp -o gcp.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c gdal_algs.cpp -o gdal_algs.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c gdal_multidimensional.cpp -o gdal_multidimensional.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c gdalio.cpp -o gdalio.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c geodesic.c -o geodesic.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c geos_methods.cpp -o geos_methods.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c graticule.cpp -o graticule.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c math_utils.cpp -o math_utils.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c mediancut.cpp -o mediancut.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c memory.cpp -o memory.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c ncdf.cpp -o ncdf.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c ram.cpp -o ram.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c raster_methods.cpp -o raster_methods.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c raster_stats.cpp -o raster_stats.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c rasterize.cpp -o rasterize.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c read.cpp -o read.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c read_gdal.cpp -o read_gdal.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c read_ogr.cpp -o read_ogr.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c sample.cpp -o sample.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c spatBase.cpp -o spatBase.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c spatDataframe.cpp -o spatDataframe.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c spatRaster.cpp -o spatRaster.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c spatSources.cpp -o spatSources.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c spatTime.cpp -o spatTime.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c spatVector.cpp -o spatVector.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c string_utils.cpp -o string_utils.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vecmath.cpp -o vecmath.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vector_methods.cpp -o vector_methods.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c write.cpp -o write.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c write_gdal.cpp -o write_gdal.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I/usr/include/gdal -I/usr/include -I"/usr/local/lib/R/site-library/Rcpp/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c write_ogr.cpp -o write_ogr.o g++ -std=gnu++11 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o terra.so RcppExports.o RcppFunctions.o RcppModule.o arith.o crs.o distRaster.o distance.o extract.o file_utils.o focal.o gcp.o gdal_algs.o gdal_multidimensional.o gdalio.o geodesic.o geos_methods.o graticule.o math_utils.o mediancut.o memory.o ncdf.o ram.o raster_methods.o raster_stats.o rasterize.o read.o read_gdal.o read_ogr.o sample.o spatBase.o spatDataframe.o spatRaster.o spatSources.o spatTime.o spatVector.o string_utils.o vecmath.o vector_methods.o write.o write_gdal.o write_ogr.o -lproj -L/usr/lib -lgdal -L/usr/lib/x86_64-linux-gnu -lgeos_c -L/usr/lib/R/lib -lR in method for 'sds' with signature 'x="stars"': no definition for class "stars" in method for 'sds' with signature 'x="stars_proxy"': no definition for class "stars_proxy" in method for 'coerce' with signature '"stars","SpatRasterDataset"': no definition for class "stars" in method for 'coerce' with signature '"ggmap","SpatRaster"': no definition for class "ggmap" in method for 'coerce' with signature '"SpatRaster","Raster"': no definition for class "Raster" in method for 'coerce' with signature '"Raster","SpatRaster"': no definition for class "Raster" in method for 'coerce' with signature '"sf","SpatVector"': no definition for class "sf" in method for 'coerce' with signature '"sfc","SpatVector"': no definition for class "sfc" in method for 'coerce' with signature '"sfg","SpatVector"': no definition for class "sfg" in method for 'coerce' with signature '"XY","SpatVector"': no definition for class "XY" in method for 'coerce' with signature '"im","SpatRaster"': no definition for class "im" in method for 'coerce' with signature '"SpatVector","Spatial"': no definition for class "Spatial" in method for 'coerce' with signature '"Spatial","SpatVector"': no definition for class "Spatial" Creating a generic function for 'ncol' from package 'base' in package 'terra' in method for 'ext' with signature 'x="sf"': no definition for class "sf" in method for 'ext' with signature 'x="Extent"': no definition for class "Extent" in method for 'ext' with signature 'x="Raster"': no definition for class "Raster" in method for 'ext' with signature 'x="Spatial"': no definition for class "Spatial" in method for 'wrap' with signature 'x="Spatial"': no definition for class "Spatial" in method for 'rast' with signature 'x="stars"': no definition for class "stars" in method for 'rast' with signature 'x="stars_proxy"': no definition for class "stars_proxy" in method for 'show' with signature '"Rcpp_SpatDataFrame"': no definition for class "Rcpp_SpatDataFrame" in method for 'show' with signature '"Rcpp_SpatCategories"': no definition for class "Rcpp_SpatCategories" in method for 'geomtype' with signature 'x="Spatial"': no definition for class "Spatial" in method for 'vect' with signature 'x="Spatial"': no definition for class "Spatial" in method for 'vect' with signature 'x="sf"': no definition for class "sf" in method for 'vect' with signature 'x="sfc"': no definition for class "sfc" in method for 'vect' with signature 'x="XY"': no definition for class "XY" g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I"/usr/local/lib/R/site-library/cpp11/include" -I../inst/include -DINSTALL=dummy -DAUTO_DOWNLOAD=0 -DHAS_REMOTE_API=0 -DUSE_OS_TZDB=0 -DONLY_C_LOCALE=1 -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c api.cpp -o api.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I"/usr/local/lib/R/site-library/cpp11/include" -I../inst/include -DINSTALL=dummy -DAUTO_DOWNLOAD=0 -DHAS_REMOTE_API=0 -DUSE_OS_TZDB=0 -DONLY_C_LOCALE=1 -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c cpp11.cpp -o cpp11.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I"/usr/local/lib/R/site-library/cpp11/include" -I../inst/include -DINSTALL=dummy -DAUTO_DOWNLOAD=0 -DHAS_REMOTE_API=0 -DUSE_OS_TZDB=0 -DONLY_C_LOCALE=1 -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c names.cpp -o names.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I"/usr/local/lib/R/site-library/cpp11/include" -I../inst/include -DINSTALL=dummy -DAUTO_DOWNLOAD=0 -DHAS_REMOTE_API=0 -DUSE_OS_TZDB=0 -DONLY_C_LOCALE=1 -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c path.cpp -o path.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I"/usr/local/lib/R/site-library/cpp11/include" -I../inst/include -DINSTALL=dummy -DAUTO_DOWNLOAD=0 -DHAS_REMOTE_API=0 -DUSE_OS_TZDB=0 -DONLY_C_LOCALE=1 -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c tz.cpp -o tz.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I"/usr/local/lib/R/site-library/cpp11/include" -I../inst/include -DINSTALL=dummy -DAUTO_DOWNLOAD=0 -DHAS_REMOTE_API=0 -DUSE_OS_TZDB=0 -DONLY_C_LOCALE=1 -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c version.cpp -o version.o g++ -std=gnu++11 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o tzdb.so api.o cpp11.o names.o path.o tz.o version.o -L/usr/lib/R/lib -lR gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c cache.c -o cache.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c init.c -o init.o gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o cachem.so cache.o init.o -L/usr/lib/R/lib -lR gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c diff.c -o diff.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c diffobj.c -o diffobj.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c init.c -o init.o gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o diffobj.so diff.o diffobj.o init.o -L/usr/lib/R/lib -lR Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : namespace 'rlang' 0.4.6 is being loaded, but >= 0.4.9 is required Calls:... withCallingHandlers -> loadNamespace -> namespaceImport -> loadNamespace Execution halted Found pkg-config cflags and libs! Testing compiler using PKG_CFLAGS= Using PKG_LIBS=-lssl -lcrypto Using PKG_CFLAGS= -DIS_LITTLE_ENDIAN g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/cycleclock.cc -o absl/base/internal/cycleclock.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/exponential_biased.cc -o absl/base/internal/exponential_biased.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/low_level_alloc.cc -o absl/base/internal/low_level_alloc.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/periodic_sampler.cc -o absl/base/internal/periodic_sampler.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/raw_logging.cc -o absl/base/internal/raw_logging.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/scoped_set_env.cc -o absl/base/internal/scoped_set_env.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/spinlock_wait.cc -o absl/base/internal/spinlock_wait.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/spinlock.cc -o absl/base/internal/spinlock.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/strerror.cc -o absl/base/internal/strerror.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/sysinfo.cc -o absl/base/internal/sysinfo.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/thread_identity.cc -o absl/base/internal/thread_identity.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/throw_delegate.cc -o absl/base/internal/throw_delegate.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/internal/unscaledcycleclock.cc -o absl/base/internal/unscaledcycleclock.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/base/log_severity.cc -o absl/base/log_severity.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/container/internal/hashtablez_sampler_force_weak_definition.cc -o absl/container/internal/hashtablez_sampler_force_weak_definition.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/container/internal/hashtablez_sampler.cc -o absl/container/internal/hashtablez_sampler.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/container/internal/raw_hash_set.cc -o absl/container/internal/raw_hash_set.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/failure_signal_handler.cc -o absl/debugging/failure_signal_handler.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/internal/address_is_readable.cc -o absl/debugging/internal/address_is_readable.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/internal/demangle.cc -o absl/debugging/internal/demangle.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/internal/elf_mem_image.cc -o absl/debugging/internal/elf_mem_image.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/internal/examine_stack.cc -o absl/debugging/internal/examine_stack.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/internal/stack_consumption.cc -o absl/debugging/internal/stack_consumption.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/internal/vdso_support.cc -o absl/debugging/internal/vdso_support.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/leak_check_disable.cc -o absl/debugging/leak_check_disable.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/leak_check.cc -o absl/debugging/leak_check.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/stacktrace.cc -o absl/debugging/stacktrace.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/debugging/symbolize.cc -o absl/debugging/symbolize.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/numeric/int128.cc -o absl/numeric/int128.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/ascii.cc -o absl/strings/ascii.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/charconv.cc -o absl/strings/charconv.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/cord.cc -o absl/strings/cord.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/escaping.cc -o absl/strings/escaping.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/charconv_bigint.cc -o absl/strings/internal/charconv_bigint.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/charconv_parse.cc -o absl/strings/internal/charconv_parse.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/cord_internal.cc -o absl/strings/internal/cord_internal.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/cord_rep_ring.cc -o absl/strings/internal/cord_rep_ring.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/escaping.cc -o absl/strings/internal/escaping.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/memutil.cc -o absl/strings/internal/memutil.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/ostringstream.cc -o absl/strings/internal/ostringstream.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/pow10_helper.cc -o absl/strings/internal/pow10_helper.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/str_format/arg.cc -o absl/strings/internal/str_format/arg.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/str_format/bind.cc -o absl/strings/internal/str_format/bind.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/str_format/extension.cc -o absl/strings/internal/str_format/extension.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/str_format/float_conversion.cc -o absl/strings/internal/str_format/float_conversion.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/str_format/output.cc -o absl/strings/internal/str_format/output.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/str_format/parser.cc -o absl/strings/internal/str_format/parser.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/internal/utf8.cc -o absl/strings/internal/utf8.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/match.cc -o absl/strings/match.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/numbers.cc -o absl/strings/numbers.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/str_cat.cc -o absl/strings/str_cat.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/str_replace.cc -o absl/strings/str_replace.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/str_split.cc -o absl/strings/str_split.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/string_view.cc -o absl/strings/string_view.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/strings/substitute.cc -o absl/strings/substitute.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/synchronization/barrier.cc -o absl/synchronization/barrier.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/synchronization/blocking_counter.cc -o absl/synchronization/blocking_counter.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/synchronization/internal/create_thread_identity.cc -o absl/synchronization/internal/create_thread_identity.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/synchronization/internal/graphcycles.cc -o absl/synchronization/internal/graphcycles.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/synchronization/internal/per_thread_sem.cc -o absl/synchronization/internal/per_thread_sem.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/synchronization/internal/waiter.cc -o absl/synchronization/internal/waiter.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/synchronization/mutex.cc -o absl/synchronization/mutex.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/synchronization/notification.cc -o absl/synchronization/notification.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/civil_time.cc -o absl/time/civil_time.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/clock.cc -o absl/time/clock.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/duration.cc -o absl/time/duration.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/format.cc -o absl/time/format.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/civil_time_detail.cc -o absl/time/internal/cctz/src/civil_time_detail.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/time_zone_fixed.cc -o absl/time/internal/cctz/src/time_zone_fixed.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/time_zone_format.cc -o absl/time/internal/cctz/src/time_zone_format.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/time_zone_if.cc -o absl/time/internal/cctz/src/time_zone_if.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/time_zone_impl.cc -o absl/time/internal/cctz/src/time_zone_impl.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/time_zone_info.cc -o absl/time/internal/cctz/src/time_zone_info.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/time_zone_libc.cc -o absl/time/internal/cctz/src/time_zone_libc.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/time_zone_lookup.cc -o absl/time/internal/cctz/src/time_zone_lookup.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/time_zone_posix.cc -o absl/time/internal/cctz/src/time_zone_posix.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/internal/cctz/src/zone_info_source.cc -o absl/time/internal/cctz/src/zone_info_source.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/time/time.cc -o absl/time/time.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/types/bad_any_cast.cc -o absl/types/bad_any_cast.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/types/bad_optional_access.cc -o absl/types/bad_optional_access.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c absl/types/bad_variant_access.cc -o absl/types/bad_variant_access.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c cpp-compat.cpp -o cpp-compat.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-accessors.cpp -o s2-accessors.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-bounds.cpp -o s2-bounds.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-cell.cpp -o s2-cell.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-constructors-formatters.cpp -o s2-constructors-formatters.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-predicates.cpp -o s2-predicates.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-transformers.cpp -o s2-transformers.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c init.cpp -o init.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppExports.cpp -o RcppExports.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-geography.cpp -o s2-geography.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-lnglat.cpp -o s2-lnglat.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-matrix.cpp -o s2-matrix.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-point.cpp -o s2-point.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-xptr.cpp -o s2-xptr.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c wk-impl.c -o wk-impl.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c wk-c-utils.c -o wk-c-utils.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2-c-api.cpp -o s2-c-api.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/base/stringprintf.cc -o s2/base/stringprintf.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/base/strtoint.cc -o s2/base/strtoint.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/encoded_s2cell_id_vector.cc -o s2/encoded_s2cell_id_vector.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/encoded_s2point_vector.cc -o s2/encoded_s2point_vector.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/encoded_s2shape_index.cc -o s2/encoded_s2shape_index.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/encoded_string_vector.cc -o s2/encoded_string_vector.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/id_set_lexicon.cc -o s2/id_set_lexicon.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/mutable_s2shape_index.cc -o s2/mutable_s2shape_index.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/r2rect.cc -o s2/r2rect.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s1angle.cc -o s2/s1angle.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s1chord_angle.cc -o s2/s1chord_angle.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s1interval.cc -o s2/s1interval.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2boolean_operation.cc -o s2/s2boolean_operation.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builder_graph.cc -o s2/s2builder_graph.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builder.cc -o s2/s2builder.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_closed_set_normalizer.cc -o s2/s2builderutil_closed_set_normalizer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_find_polygon_degeneracies.cc -o s2/s2builderutil_find_polygon_degeneracies.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_lax_polygon_layer.cc -o s2/s2builderutil_lax_polygon_layer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_s2point_vector_layer.cc -o s2/s2builderutil_s2point_vector_layer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_s2polygon_layer.cc -o s2/s2builderutil_s2polygon_layer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_s2polyline_layer.cc -o s2/s2builderutil_s2polyline_layer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_s2polyline_vector_layer.cc -o s2/s2builderutil_s2polyline_vector_layer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_snap_functions.cc -o s2/s2builderutil_snap_functions.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2builderutil_testing.cc -o s2/s2builderutil_testing.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2cap.cc -o s2/s2cap.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2cell_id.cc -o s2/s2cell_id.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2cell_index.cc -o s2/s2cell_index.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2cell_union.cc -o s2/s2cell_union.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2cell.cc -o s2/s2cell.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2centroids.cc -o s2/s2centroids.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2closest_cell_query.cc -o s2/s2closest_cell_query.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2closest_edge_query.cc -o s2/s2closest_edge_query.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2closest_point_query.cc -o s2/s2closest_point_query.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2contains_vertex_query.cc -o s2/s2contains_vertex_query.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2convex_hull_query.cc -o s2/s2convex_hull_query.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2coords.cc -o s2/s2coords.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2crossing_edge_query.cc -o s2/s2crossing_edge_query.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2debug.cc -o s2/s2debug.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2earth.cc -o s2/s2earth.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2edge_clipping.cc -o s2/s2edge_clipping.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2edge_crosser.cc -o s2/s2edge_crosser.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2edge_crossings.cc -o s2/s2edge_crossings.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2edge_distances.cc -o s2/s2edge_distances.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2edge_tessellator.cc -o s2/s2edge_tessellator.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2error.cc -o s2/s2error.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2furthest_edge_query.cc -o s2/s2furthest_edge_query.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2latlng_rect_bounder.cc -o s2/s2latlng_rect_bounder.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2latlng_rect.cc -o s2/s2latlng_rect.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2latlng.cc -o s2/s2latlng.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2lax_loop_shape.cc -o s2/s2lax_loop_shape.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2lax_polygon_shape.cc -o s2/s2lax_polygon_shape.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2lax_polyline_shape.cc -o s2/s2lax_polyline_shape.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2loop_measures.cc -o s2/s2loop_measures.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2loop.cc -o s2/s2loop.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2max_distance_targets.cc -o s2/s2max_distance_targets.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2measures.cc -o s2/s2measures.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2metrics.cc -o s2/s2metrics.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2min_distance_targets.cc -o s2/s2min_distance_targets.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2padded_cell.cc -o s2/s2padded_cell.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2point_compression.cc -o s2/s2point_compression.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2point_region.cc -o s2/s2point_region.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2pointutil.cc -o s2/s2pointutil.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2polygon.cc -o s2/s2polygon.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2polyline_alignment.cc -o s2/s2polyline_alignment.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2polyline_measures.cc -o s2/s2polyline_measures.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2polyline_simplifier.cc -o s2/s2polyline_simplifier.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2polyline.cc -o s2/s2polyline.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2predicates.cc -o s2/s2predicates.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2projections.cc -o s2/s2projections.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2r2rect.cc -o s2/s2r2rect.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2region_coverer.cc -o s2/s2region_coverer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2region_intersection.cc -o s2/s2region_intersection.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2region_term_indexer.cc -o s2/s2region_term_indexer.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2region_union.cc -o s2/s2region_union.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2region.cc -o s2/s2region.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shape_index_buffered_region.cc -o s2/s2shape_index_buffered_region.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shape_index_measures.cc -o s2/s2shape_index_measures.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shape_index.cc -o s2/s2shape_index.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shape_measures.cc -o s2/s2shape_measures.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shapeutil_build_polygon_boundaries.cc -o s2/s2shapeutil_build_polygon_boundaries.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shapeutil_coding.cc -o s2/s2shapeutil_coding.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shapeutil_contains_brute_force.cc -o s2/s2shapeutil_contains_brute_force.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shapeutil_edge_iterator.cc -o s2/s2shapeutil_edge_iterator.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shapeutil_get_reference_point.cc -o s2/s2shapeutil_get_reference_point.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shapeutil_range_iterator.cc -o s2/s2shapeutil_range_iterator.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2shapeutil_visit_crossing_edge_pairs.cc -o s2/s2shapeutil_visit_crossing_edge_pairs.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2testing.cc -o s2/s2testing.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2text_format.cc -o s2/s2text_format.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/s2wedge_relations.cc -o s2/s2wedge_relations.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/strings/ostringstream.cc -o s2/strings/ostringstream.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/strings/serialize.cc -o s2/strings/serialize.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/util/bits/bit-interleave.cc -o s2/util/bits/bit-interleave.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/util/bits/bits.cc -o s2/util/bits/bits.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/util/coding/coder.cc -o s2/util/coding/coder.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/util/coding/varint.cc -o s2/util/coding/varint.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/util/math/exactfloat/exactfloat.cc -o s2/util/math/exactfloat/exactfloat.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/util/math/mathutil.cc -o s2/util/math/mathutil.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/usr/local/lib/R/site-library/wk/include" -DIS_LITTLE_ENDIAN -pthread -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c s2/util/units/length-units.cc -o s2/util/units/length-units.o g++ -std=gnu++11 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o s2.so absl/base/internal/cycleclock.o absl/base/internal/exponential_biased.o absl/base/internal/low_level_alloc.o absl/base/internal/periodic_sampler.o absl/base/internal/raw_logging.o absl/base/internal/scoped_set_env.o absl/base/internal/spinlock_wait.o absl/base/internal/spinlock.o absl/base/internal/strerror.o absl/base/internal/sysinfo.o absl/base/internal/thread_identity.o absl/base/internal/throw_delegate.o absl/base/internal/unscaledcycleclock.o absl/base/log_severity.o absl/container/internal/hashtablez_sampler_force_weak_definition.o absl/container/internal/hashtablez_sampler.o absl/container/internal/raw_hash_set.o absl/debugging/failure_signal_handler.o absl/debugging/internal/address_is_readable.o absl/debugging/internal/demangle.o absl/debugging/internal/elf_mem_image.o absl/debugging/internal/examine_stack.o absl/debugging/internal/stack_consumption.o absl/debugging/internal/vdso_support.o absl/debugging/leak_check_disable.o absl/debugging/leak_check.o absl/debugging/stacktrace.o absl/debugging/symbolize.o absl/numeric/int128.o absl/strings/ascii.o absl/strings/charconv.o absl/strings/cord.o absl/strings/escaping.o absl/strings/internal/charconv_bigint.o absl/strings/internal/charconv_parse.o absl/strings/internal/cord_internal.o absl/strings/internal/cord_rep_ring.o absl/strings/internal/escaping.o absl/strings/internal/memutil.o absl/strings/internal/ostringstream.o absl/strings/internal/pow10_helper.o absl/strings/internal/str_format/arg.o absl/strings/internal/str_format/bind.o absl/strings/internal/str_format/extension.o absl/strings/internal/str_format/float_conversion.o absl/strings/internal/str_format/output.o absl/strings/internal/str_format/parser.o absl/strings/internal/utf8.o absl/strings/match.o absl/strings/numbers.o absl/strings/str_cat.o absl/strings/str_replace.o absl/strings/str_split.o absl/strings/string_view.o absl/strings/substitute.o absl/synchronization/barrier.o absl/synchronization/blocking_counter.o absl/synchronization/internal/create_thread_identity.o absl/synchronization/internal/graphcycles.o absl/synchronization/internal/per_thread_sem.o absl/synchronization/internal/waiter.o absl/synchronization/mutex.o absl/synchronization/notification.o absl/time/civil_time.o absl/time/clock.o absl/time/duration.o absl/time/format.o absl/time/internal/cctz/src/civil_time_detail.o absl/time/internal/cctz/src/time_zone_fixed.o absl/time/internal/cctz/src/time_zone_format.o absl/time/internal/cctz/src/time_zone_if.o absl/time/internal/cctz/src/time_zone_impl.o absl/time/internal/cctz/src/time_zone_info.o absl/time/internal/cctz/src/time_zone_libc.o absl/time/internal/cctz/src/time_zone_lookup.o absl/time/internal/cctz/src/time_zone_posix.o absl/time/internal/cctz/src/zone_info_source.o absl/time/time.o absl/types/bad_any_cast.o absl/types/bad_optional_access.o absl/types/bad_variant_access.o cpp-compat.o s2-accessors.o s2-bounds.o s2-cell.o s2-constructors-formatters.o s2-predicates.o s2-transformers.o init.o RcppExports.o s2-geography.o s2-lnglat.o s2-matrix.o s2-point.o s2-xptr.o wk-impl.o wk-c-utils.o s2-c-api.o s2/base/stringprintf.o s2/base/strtoint.o s2/encoded_s2cell_id_vector.o s2/encoded_s2point_vector.o s2/encoded_s2shape_index.o s2/encoded_string_vector.o s2/id_set_lexicon.o s2/mutable_s2shape_index.o s2/r2rect.o s2/s1angle.o s2/s1chord_angle.o s2/s1interval.o s2/s2boolean_operation.o s2/s2builder_graph.o s2/s2builder.o s2/s2builderutil_closed_set_normalizer.o s2/s2builderutil_find_polygon_degeneracies.o s2/s2builderutil_lax_polygon_layer.o s2/s2builderutil_s2point_vector_layer.o s2/s2builderutil_s2polygon_layer.o s2/s2builderutil_s2polyline_layer.o s2/s2builderutil_s2polyline_vector_layer.o s2/s2builderutil_snap_functions.o s2/s2builderutil_testing.o s2/s2cap.o s2/s2cell_id.o s2/s2cell_index.o s2/s2cell_union.o s2/s2cell.o s2/s2centroids.o s2/s2closest_cell_query.o s2/s2closest_edge_query.o s2/s2closest_point_query.o s2/s2contains_vertex_query.o s2/s2convex_hull_query.o s2/s2coords.o s2/s2crossing_edge_query.o s2/s2debug.o s2/s2earth.o s2/s2edge_clipping.o s2/s2edge_crosser.o s2/s2edge_crossings.o s2/s2edge_distances.o s2/s2edge_tessellator.o s2/s2error.o s2/s2furthest_edge_query.o s2/s2latlng_rect_bounder.o s2/s2latlng_rect.o s2/s2latlng.o s2/s2lax_loop_shape.o s2/s2lax_polygon_shape.o s2/s2lax_polyline_shape.o s2/s2loop_measures.o s2/s2loop.o s2/s2max_distance_targets.o s2/s2measures.o s2/s2metrics.o s2/s2min_distance_targets.o s2/s2padded_cell.o s2/s2point_compression.o s2/s2point_region.o s2/s2pointutil.o s2/s2polygon.o s2/s2polyline_alignment.o s2/s2polyline_measures.o s2/s2polyline_simplifier.o s2/s2polyline.o s2/s2predicates.o s2/s2projections.o s2/s2r2rect.o s2/s2region_coverer.o s2/s2region_intersection.o s2/s2region_term_indexer.o s2/s2region_union.o s2/s2region.o s2/s2shape_index_buffered_region.o s2/s2shape_index_measures.o s2/s2shape_index.o s2/s2shape_measures.o s2/s2shapeutil_build_polygon_boundaries.o s2/s2shapeutil_coding.o s2/s2shapeutil_contains_brute_force.o s2/s2shapeutil_edge_iterator.o s2/s2shapeutil_get_reference_point.o s2/s2shapeutil_range_iterator.o s2/s2shapeutil_visit_crossing_edge_pairs.o s2/s2testing.o s2/s2text_format.o s2/s2wedge_relations.o s2/strings/ostringstream.o s2/strings/serialize.o s2/util/bits/bit-interleave.o s2/util/bits/bits.o s2/util/coding/coder.o s2/util/coding/varint.o s2/util/math/exactfloat/exactfloat.o s2/util/math/mathutil.o s2/util/units/length-units.o -lssl -lcrypto -L/usr/lib/R/lib -lR Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : namespace 'htmltools' 0.4.0 is being loaded, but >= 0.5.1.1 is required Calls: ... withCallingHandlers -> loadNamespace -> namespaceImport -> loadNamespace Execution halted > curl::curl_download("https://r-lib.github.io/gert/get-libgit2-linux.sh","get-libgit2-linux.sh") > > > curl::curl_download('https://r-lib.github.io/gert/libgit2-1.1.0.x86_64_linux.tar.gz','bundle.tar.gz') > > Using static libgit2-1.1.0 for Linux x86_64 Using PKG_CFLAGS=-DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include Using PKG_LIBS=-L/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/lib -lgit2 -lrt -lpthread -lssh2 -lssl -lcrypto -ldl -lpcre -lz Configuration OK! rm -f gert.so branch.o clone.o commit.o config.o conflicts.o files.o init.o merge.o rebase.o stash.o submodules.o tag.o utils.o version.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c branch.c -o branch.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c clone.c -o clone.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c commit.c -o commit.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c config.c -o config.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c conflicts.c -o conflicts.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c files.c -o files.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c init.c -o init.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c merge.c -o merge.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c rebase.c -o rebase.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c stash.c -o stash.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c submodules.c -o submodules.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c tag.c -o tag.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c utils.c -o utils.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -DSTATIC_LIBGIT2 -I/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/include -DR_NO_REMAP -DSTRICT_R_HEADERS -fvisibility=hidden -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c version.c -o version.o gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o gert.so branch.o clone.o commit.o config.o conflicts.o files.o init.o merge.o rebase.o stash.o submodules.o tag.o utils.o version.o -L/tmp/RtmpxNw6A7/R.INSTALL7da4dae3e05/gert/libgit2/lib -lgit2 -lrt -lpthread -lssh2 -lssl -lcrypto -ldl -lpcre -lz -L/usr/lib/R/lib -lR fatal: $HOME not set fatal: $HOME not set fatal: $HOME not set gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I./libsass/include -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c compile.c -o compile.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -I./libsass/include -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c init.c -o init.o MAKEFLAGS= CC="gcc -std=gnu99" CFLAGS="-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g " CXX="g++ -std=gnu++11" AR="ar" LDFLAGS="-Wl,-Bsymbolic-functions -Wl,-z,relro" make -C libsass make[1]: Entering directory '/tmp/RtmpPLG56w/R.INSTALL16e7fb56fe5/sass/src/libsass' gcc -std=gnu99 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -I ./include -fPIC -c -o src/cencode.o src/cencode.c g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast.o src/ast.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast_values.o src/ast_values.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast_supports.o src/ast_supports.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast_sel_cmp.o src/ast_sel_cmp.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast_sel_unify.o src/ast_sel_unify.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast_sel_super.o src/ast_sel_super.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast_sel_weave.o src/ast_sel_weave.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast_selectors.o src/ast_selectors.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/context.o src/context.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/constants.o src/constants.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/fn_utils.o src/fn_utils.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/fn_miscs.o src/fn_miscs.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/fn_maps.o src/fn_maps.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/fn_lists.o src/fn_lists.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/fn_colors.o src/fn_colors.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/fn_numbers.o src/fn_numbers.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/fn_strings.o src/fn_strings.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/fn_selectors.o src/fn_selectors.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/color_maps.o src/color_maps.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/environment.o src/environment.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast_fwd_decl.o src/ast_fwd_decl.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/bind.o src/bind.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/file.o src/file.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/util.o src/util.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/util_string.o src/util_string.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/json.o src/json.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/units.o src/units.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/values.o src/values.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/plugins.o src/plugins.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/source.o src/source.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/position.o src/position.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/lexer.o src/lexer.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/parser.o src/parser.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/parser_selectors.o src/parser_selectors.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/prelexer.o src/prelexer.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/eval.o src/eval.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/eval_selectors.o src/eval_selectors.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/expand.o src/expand.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/listize.o src/listize.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/cssize.o src/cssize.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/extender.o src/extender.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/extension.o src/extension.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/stylesheet.o src/stylesheet.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/output.o src/output.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/inspect.o src/inspect.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/emitter.o src/emitter.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/check_nesting.o src/check_nesting.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/remove_placeholders.o src/remove_placeholders.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/sass.o src/sass.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/sass_values.o src/sass_values.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/sass_context.o src/sass_context.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/sass_functions.o src/sass_functions.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/sass2scss.o src/sass2scss.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/backtrace.o src/backtrace.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/operators.o src/operators.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/ast2c.o src/ast2c.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/c2ast.o src/c2ast.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/to_value.o src/to_value.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/source_map.o src/source_map.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/error_handling.o src/error_handling.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/memory/allocator.o src/memory/allocator.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/memory/shared_ptr.o src/memory/shared_ptr.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/utf8_string.o src/utf8_string.cpp g++ -std=gnu++11 -Wall -O2 -std=c++11 -I ./include -fPIC -c -o src/base64vlq.o src/base64vlq.cpp mkdir lib ar rcvs lib/libsass.a src/cencode.o src/ast.o src/ast_values.o src/ast_supports.o src/ast_sel_cmp.o src/ast_sel_unify.o src/ast_sel_super.o src/ast_sel_weave.o src/ast_selectors.o src/context.o src/constants.o src/fn_utils.o src/fn_miscs.o src/fn_maps.o src/fn_lists.o src/fn_colors.o src/fn_numbers.o src/fn_strings.o src/fn_selectors.o src/color_maps.o src/environment.o src/ast_fwd_decl.o src/bind.o src/file.o src/util.o src/util_string.o src/json.o src/units.o src/values.o src/plugins.o src/source.o src/position.o src/lexer.o src/parser.o src/parser_selectors.o src/prelexer.o src/eval.o src/eval_selectors.o src/expand.o src/listize.o src/cssize.o src/extender.o src/extension.o src/stylesheet.o src/output.o src/inspect.o src/emitter.o src/check_nesting.o src/remove_placeholders.o src/sass.o src/sass_values.o src/sass_context.o src/sass_functions.o src/sass2scss.o src/backtrace.o src/operators.o src/ast2c.o src/c2ast.o src/to_value.o src/source_map.o src/error_handling.o src/memory/allocator.o src/memory/shared_ptr.o src/utf8_string.o src/base64vlq.o a - src/cencode.o a - src/ast.o a - src/ast_values.o a - src/ast_supports.o a - src/ast_sel_cmp.o a - src/ast_sel_unify.o a - src/ast_sel_super.o a - src/ast_sel_weave.o a - src/ast_selectors.o a - src/context.o a - src/constants.o a - src/fn_utils.o a - src/fn_miscs.o a - src/fn_maps.o a - src/fn_lists.o a - src/fn_colors.o a - src/fn_numbers.o a - src/fn_strings.o a - src/fn_selectors.o a - src/color_maps.o a - src/environment.o a - src/ast_fwd_decl.o a - src/bind.o a - src/file.o a - src/util.o a - src/util_string.o a - src/json.o a - src/units.o a - src/values.o a - src/plugins.o a - src/source.o a - src/position.o a - src/lexer.o a - src/parser.o a - src/parser_selectors.o a - src/prelexer.o a - src/eval.o a - src/eval_selectors.o a - src/expand.o a - src/listize.o a - src/cssize.o a - src/extender.o a - src/extension.o a - src/stylesheet.o a - src/output.o a - src/inspect.o a - src/emitter.o a - src/check_nesting.o a - src/remove_placeholders.o a - src/sass.o a - src/sass_values.o a - src/sass_context.o a - src/sass_functions.o a - src/sass2scss.o a - src/backtrace.o a - src/operators.o a - src/ast2c.o a - src/c2ast.o a - src/to_value.o a - src/source_map.o a - src/error_handling.o a - src/memory/allocator.o a - src/memory/shared_ptr.o a - src/utf8_string.o a - src/base64vlq.o make[1]: Leaving directory '/tmp/RtmpPLG56w/R.INSTALL16e7fb56fe5/sass/src/libsass' gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o sass.so compile.o init.o ./libsass/lib/libsass.a -lstdc++ -L/usr/lib/R/lib -lR Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : namespace 'htmltools' 0.4.0 is being loaded, but >= 0.5.1 is required Calls: ... withCallingHandlers -> loadNamespace -> namespaceImport -> loadNamespace Execution halted Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : namespace 'htmltools' 0.4.0 is being loaded, but >= 0.5.2 is required Calls: ... withCallingHandlers -> loadNamespace -> namespaceImport -> loadNamespace Execution halted g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c Iconv.cpp -o Iconv.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c LocaleInfo.cpp -o LocaleInfo.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c altrep.cc -o altrep.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c cpp11.cpp -o cpp11.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c delimited_index.cc -o delimited_index.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c delimited_index_connection.cc -o delimited_index_connection.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c fixed_width_index_connection.cc -o fixed_width_index_connection.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c gen.cc -o gen.o gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c grisu3.c -o grisu3.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c guess_type.cc -o guess_type.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c iconv_file.cc -o iconv_file.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c index_collection.cc -o index_collection.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom.cc -o vroom.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_big_int.cc -o vroom_big_int.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_chr.cc -o vroom_chr.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_date.cc -o vroom_date.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_dbl.cc -o vroom_dbl.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_dttm.cc -o vroom_dttm.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_errors.cpp -o vroom_errors.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_fct.cc -o vroom_fct.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_fwf.cc -o vroom_fwf.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_int.cc -o vroom_int.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_num.cc -o vroom_num.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_rle.cc -o vroom_rle.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_time.cc -o vroom_time.o g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -Imio/include -DWIN32_LEAN_AND_MEAN -Ispdlog/include -DFMT_HEADER_ONLY -I"/usr/local/lib/R/site-library/progress/include" -I"/usr/local/lib/R/site-library/cpp11/include" -I"/usr/local/lib/R/site-library/tzdb/include" -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c vroom_write.cc -o vroom_write.o g++ -std=gnu++11 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o vroom.so Iconv.o LocaleInfo.o altrep.o cpp11.o delimited_index.o delimited_index_connection.o fixed_width_index_connection.o gen.o grisu3.o guess_type.o iconv_file.o index_collection.o vroom.o vroom_big_int.o vroom_chr.o vroom_date.o vroom_dbl.o vroom_dttm.o vroom_errors.o vroom_fct.o vroom_fwf.o vroom_int.o vroom_num.o vroom_rle.o vroom_time.o vroom_write.o -L/usr/lib/R/lib -lR Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : namespace 'rlang' 0.4.6 is being loaded, but >= 0.4.10 is required Calls: ... withCallingHandlers -> loadNamespace -> namespaceImport -> loadNamespace Execution halted Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : namespace 'cli' 2.0.2 is being loaded, but >= 2.1.0 is required Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace Execution halted Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : namespace 'dplyr' 1.0.0 is being loaded, but >= 1.0.3 is required Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace Execution halted Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : namespace 'shiny' 1.4.0.2 is being loaded, but >= 1.5.0 is required Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace Execution halted
Now we show the chart in this wiki page through an iframe:
{iframe name="myChart" width="1000" height="1200" align="middle" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto" src="temp/public/rCharts_512paths-gh-pages/mychart.html"}