Using a database in testing

This example requires the redux package, which is available on CRAN and can be installed with

docker <- stevedore::docker_client()

redis <- docker$container$run("redis", name = "redis", ports = "6379",
                              detach = TRUE, rm = TRUE)

We now have a Redis server running on 32769

redis$ports()
##   container_port protocol host_ip host_port
## 1           6379      tcp 0.0.0.0     32769

Make a connection to the Redis server:

con <- redux::hiredis(port = redis$ports()$host_port)

and we can communicate with the Redis server:

con$PING()
## [Redis: PONG]

Because this is a brand new container we can write data without worrying about clobbering data that already exists:

con$SET("key", "hello redis")
## [Redis: OK]
con$GET("key")
## [1] "hello redis"

And we can get a fresh copy of Redis by simply starting a new copy of redis

redis$kill()
## NULL
redis <- docker$container$run("redis", name = "redis", ports = "6379",
                              detach = TRUE, rm = TRUE)
con <- redux::hiredis(port = redis$ports()$host_port)
con$KEYS("*")
## list()
redis$kill()
## NULL

The same approach works for other database that might be large or awkward to install, such as Postgres or MySQL.

Testing shiny apps

(this section is not actually run because doing anything with it requires looking in a web browser)

The rocker project has a shiny container that provides an easy to use version of the shiny server. If we have a directory app that contains a shiny application we can map this with:

volumes <- sprintf("%s:%s", normalizePath("app"), "/srv/shiny-server/")

(see the shiny docker image documentation for the destination path.

We can start this with

shiny <- docker$container$run("rocker/shiny", name = "shiny", ports = "3838",
                              volumes = volumes,
                              detach = TRUE, rm = TRUE)

In an interactive session, you can visit the shiny server:

browseURL(sprintf("http://localhost:%s", shiny$ports()$host_port))

Package testing

You can build an image that contains all the bits required to test your package and then run tests using that image. This ensures that you’re running in a totally clean environment (and that you really know what all the dependencies of your package are)

For this we have a Dockerfile, which contains

FROM rocker/r-ver:latest

RUN apt-get update && \
        apt-get install -yy \
                git \
                libcurl4-openssl-dev \
                libssl-dev \
                qpdf

RUN install2.r --error \
        curl \
        knitr \
        openssl \
        rcmdcheck \
        rmarkdown \
        rcorpora \
        testthat \
        uuid

COPY tester.sh /usr/local/bin
RUN chmod +x /usr/local/bin/tester.sh

ENTRYPOINT ["/usr/local/bin/tester.sh"]

And the script tester.sh (copied into the docker image above) which contains:

lang_output(readLines("tester/tester.sh"), "shell")
## ```shell
## #!/usr/bin/env bash
## set -e
##
## if [[ "$#" -ne 1 ]]; then
##     echo "Expected one argument"
##     exit 1
## fi
## SRC=$1
##
## if echo $SRC | grep -q "^https://"; then
##     DEST=$(mktemp -d)
##     git clone $SRC $DEST
##     SRC=$DEST
## fi
##
## if [ ! -f "$SRC/DESCRIPTION" ]; then
##     echo "Did not find a DESCRIPTION" file
##     exit 1
## fi
##
## PACKAGE=$(grep '^Package:' "$SRC/DESCRIPTION" | \
##                  sed -E 's/^Package:[[:space:]]+//')
## R CMD build $SRC
## PACKAGE_TGZ=$(ls -1tr ${PACKAGE}*gz | tail -n1)
##
## export _R_CHECK_CRAN_INCOMING_=FALSE
## Rscript -e "rcmdcheck::rcmdcheck('$PACKAGE_TGZ', args = c('--as-cran', '--no-manual'))"
## ```
img <- docker$image$build("tester", tag = "richfitz/tester")
## Step 1/6 : FROM rocker/r-ver:latest
##  ---> f3ed4b5c4d71
## Step 2/6 : RUN apt-get update &&         apt-get install -yy                 git                 libcurl4-openssl-dev                 libssl-dev                 qpdf
##  ---> Running in 6a6764feef2c
## Get:1 http://deb.debian.org/debian buster InRelease [122 kB]
## Get:3 http://deb.debian.org/debian buster-updates InRelease [49.3 kB]
## Get:2 http://security-cdn.debian.org/debian-security buster/updates InRelease [65.4 kB]
## Get:4 http://deb.debian.org/debian buster/main amd64 Packages [7,908 kB]
## Get:5 http://security-cdn.debian.org/debian-security buster/updates/main amd64 Packages [169 kB]
## Get:6 http://deb.debian.org/debian buster-updates/main amd64 Packages [5,792 B]
## Fetched 8,319 kB in 4s (1,901 kB/s)
## Reading package lists...
## Reading package lists...
## Building dependency tree...
## Reading state information...
## The following additional packages will be installed:
##   git-man less libcurl3-gnutls libedit2 liberror-perl libgdbm-compat4 libgdbm6
##   libpcre2-8-0 libperl5.28 libqpdf21 libxmuu1 netbase openssh-client patch
##   perl perl-modules-5.28 xauth
## Suggested packages:
##   gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email
##   git-gui gitk gitweb git-cvs git-mediawiki git-svn libcurl4-doc libidn11-dev
##   libkrb5-dev libldap2-dev librtmp-dev libssh2-1-dev pkg-config zlib1g-dev
##   gdbm-l10n libssl-doc keychain libpam-ssh monkeysphere ssh-askpass ed
##   diffutils-doc perl-doc libterm-readline-gnu-perl
##   | libterm-readline-perl-perl libb-debug-perl liblocale-codes-perl
## The following NEW packages will be installed:
##   git git-man less libcurl3-gnutls libcurl4-openssl-dev libedit2 liberror-perl
##   libgdbm-compat4 libgdbm6 libpcre2-8-0 libperl5.28 libqpdf21 libssl-dev
##   libxmuu1 netbase openssh-client patch perl perl-modules-5.28 qpdf xauth
## 0 upgraded, 21 newly installed, 0 to remove and 2 not upgraded.
## Need to get 19.2 MB of archives.
## After this operation, 103 MB of additional disk space will be used.
## Get:1 http://deb.debian.org/debian buster/main amd64 perl-modules-5.28 all 5.28.1-6 [2,873 kB]
## Get:2 http://security-cdn.debian.org/debian-security buster/updates/main amd64 git-man all 1:2.20.1-2+deb10u1 [1,620 kB]
## Get:4 http://deb.debian.org/debian buster/main amd64 libgdbm6 amd64 1.18.1-4 [64.7 kB]
## Get:3 http://security-cdn.debian.org/debian-security buster/updates/main amd64 git amd64 1:2.20.1-2+deb10u1 [5,620 kB]
## Get:5 http://deb.debian.org/debian buster/main amd64 libgdbm-compat4 amd64 1.18.1-4 [44.1 kB]
## Get:6 http://deb.debian.org/debian buster/main amd64 libperl5.28 amd64 5.28.1-6 [3,883 kB]
## Get:7 http://deb.debian.org/debian buster/main amd64 perl amd64 5.28.1-6 [204 kB]
## Get:8 http://deb.debian.org/debian buster/main amd64 less amd64 487-0.1+b1 [129 kB]
## Get:9 http://deb.debian.org/debian buster/main amd64 netbase all 5.6 [19.4 kB]
## Get:10 http://deb.debian.org/debian buster/main amd64 libedit2 amd64 3.1-20181209-1 [94.0 kB]
## Get:11 http://deb.debian.org/debian buster/main amd64 openssh-client amd64 1:7.9p1-10+deb10u1 [782 kB]
## Get:12 http://deb.debian.org/debian buster/main amd64 libcurl3-gnutls amd64 7.64.0-4 [329 kB]
## Get:13 http://deb.debian.org/debian buster/main amd64 libpcre2-8-0 amd64 10.32-5 [213 kB]
## Get:14 http://deb.debian.org/debian buster/main amd64 liberror-perl all 0.17027-2 [30.9 kB]
## Get:15 http://deb.debian.org/debian buster/main amd64 libcurl4-openssl-dev amd64 7.64.0-4 [419 kB]
## Get:16 http://deb.debian.org/debian buster/main amd64 libqpdf21 amd64 8.4.0-2 [435 kB]
## Get:17 http://deb.debian.org/debian buster/main amd64 libssl-dev amd64 1.1.1d-0+deb10u2 [1,793 kB]
## Get:18 http://deb.debian.org/debian buster/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB]
## Get:19 http://deb.debian.org/debian buster/main amd64 patch amd64 2.7.6-3+deb10u1 [126 kB]
## Get:20 http://deb.debian.org/debian buster/main amd64 qpdf amd64 8.4.0-2 [413 kB]
## Get:21 http://deb.debian.org/debian buster/main amd64 xauth amd64 1:1.0.10-1 [40.3 kB]
## 
[91mdebconf: delaying package configuration, since apt-utils is not installed
## 
[0mFetched 19.2 MB in 6s (3,115 kB/s)
## Selecting previously unselected package perl-modules-5.28.
## (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 12848 files and directories currently installed.)
## Preparing to unpack .../00-perl-modules-5.28_5.28.1-6_all.deb ...
## Unpacking perl-modules-5.28 (5.28.1-6) ...
## Selecting previously unselected package libgdbm6:amd64.
## Preparing to unpack .../01-libgdbm6_1.18.1-4_amd64.deb ...
## Unpacking libgdbm6:amd64 (1.18.1-4) ...
## Selecting previously unselected package libgdbm-compat4:amd64.
## Preparing to unpack .../02-libgdbm-compat4_1.18.1-4_amd64.deb ...
## Unpacking libgdbm-compat4:amd64 (1.18.1-4) ...
## Selecting previously unselected package libperl5.28:amd64.
## Preparing to unpack .../03-libperl5.28_5.28.1-6_amd64.deb ...
## Unpacking libperl5.28:amd64 (5.28.1-6) ...
## Selecting previously unselected package perl.
## Preparing to unpack .../04-perl_5.28.1-6_amd64.deb ...
## Unpacking perl (5.28.1-6) ...
## Selecting previously unselected package less.
## Preparing to unpack .../05-less_487-0.1+b1_amd64.deb ...
## Unpacking less (487-0.1+b1) ...
## Selecting previously unselected package netbase.
## Preparing to unpack .../06-netbase_5.6_all.deb ...
## Unpacking netbase (5.6) ...
## Selecting previously unselected package libedit2:amd64.
## Preparing to unpack .../07-libedit2_3.1-20181209-1_amd64.deb ...
## Unpacking libedit2:amd64 (3.1-20181209-1) ...
## Selecting previously unselected package openssh-client.
## Preparing to unpack .../08-openssh-client_1%3a7.9p1-10+deb10u1_amd64.deb ...
## Unpacking openssh-client (1:7.9p1-10+deb10u1) ...
## Selecting previously unselected package libcurl3-gnutls:amd64.
## Preparing to unpack .../09-libcurl3-gnutls_7.64.0-4_amd64.deb ...
## Unpacking libcurl3-gnutls:amd64 (7.64.0-4) ...
## Selecting previously unselected package libpcre2-8-0:amd64.
## Preparing to unpack .../10-libpcre2-8-0_10.32-5_amd64.deb ...
## Unpacking libpcre2-8-0:amd64 (10.32-5) ...
## Selecting previously unselected package liberror-perl.
## Preparing to unpack .../11-liberror-perl_0.17027-2_all.deb ...
## Unpacking liberror-perl (0.17027-2) ...
## Selecting previously unselected package git-man.
## Preparing to unpack .../12-git-man_1%3a2.20.1-2+deb10u1_all.deb ...
## Unpacking git-man (1:2.20.1-2+deb10u1) ...
## Selecting previously unselected package git.
## Preparing to unpack .../13-git_1%3a2.20.1-2+deb10u1_amd64.deb ...
## Unpacking git (1:2.20.1-2+deb10u1) ...
## Selecting previously unselected package libcurl4-openssl-dev:amd64.
## Preparing to unpack .../14-libcurl4-openssl-dev_7.64.0-4_amd64.deb ...
## Unpacking libcurl4-openssl-dev:amd64 (7.64.0-4) ...
## Selecting previously unselected package libqpdf21:amd64.
## Preparing to unpack .../15-libqpdf21_8.4.0-2_amd64.deb ...
## Unpacking libqpdf21:amd64 (8.4.0-2) ...
## Selecting previously unselected package libssl-dev:amd64.
## Preparing to unpack .../16-libssl-dev_1.1.1d-0+deb10u2_amd64.deb ...
## Unpacking libssl-dev:amd64 (1.1.1d-0+deb10u2) ...
## Selecting previously unselected package libxmuu1:amd64.
## Preparing to unpack .../17-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ...
## Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ...
## Selecting previously unselected package patch.
## Preparing to unpack .../18-patch_2.7.6-3+deb10u1_amd64.deb ...
## Unpacking patch (2.7.6-3+deb10u1) ...
## Selecting previously unselected package qpdf.
## Preparing to unpack .../19-qpdf_8.4.0-2_amd64.deb ...
## Unpacking qpdf (8.4.0-2) ...
## Selecting previously unselected package xauth.
## Preparing to unpack .../20-xauth_1%3a1.0.10-1_amd64.deb ...
## Unpacking xauth (1:1.0.10-1) ...
## Setting up perl-modules-5.28 (5.28.1-6) ...
## Setting up libedit2:amd64 (3.1-20181209-1) ...
## Setting up less (487-0.1+b1) ...
## debconf: unable to initialize frontend: Dialog
## debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
## debconf: falling back to frontend: Readline
## Setting up libcurl3-gnutls:amd64 (7.64.0-4) ...
## Setting up libqpdf21:amd64 (8.4.0-2) ...
## Setting up libcurl4-openssl-dev:amd64 (7.64.0-4) ...
## Setting up qpdf (8.4.0-2) ...
## Setting up libssl-dev:amd64 (1.1.1d-0+deb10u2) ...
## Setting up patch (2.7.6-3+deb10u1) ...
## Setting up libpcre2-8-0:amd64 (10.32-5) ...
## Setting up git-man (1:2.20.1-2+deb10u1) ...
## Setting up netbase (5.6) ...
## Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ...
## Setting up libgdbm6:amd64 (1.18.1-4) ...
## Setting up openssh-client (1:7.9p1-10+deb10u1) ...
## Setting up libgdbm-compat4:amd64 (1.18.1-4) ...
## Setting up libperl5.28:amd64 (5.28.1-6) ...
## Setting up xauth (1:1.0.10-1) ...
## Setting up perl (5.28.1-6) ...
## Setting up liberror-perl (0.17027-2) ...
## Setting up git (1:2.20.1-2+deb10u1) ...
## Processing triggers for libc-bin (2.28-10) ...
## Removing intermediate container 6a6764feef2c
##  ---> 7cf3bd16a336
## Step 3/6 : RUN install2.r --error         curl         knitr         openssl         rcmdcheck         rmarkdown         rcorpora         testthat         uuid
##  ---> Running in 4fedb68c3d63
## 
[91malso installing the dependencies ‘ps’, ‘glue’, ‘stringi’, ‘sys’, ‘processx’, ‘assertthat’, ‘fansi’, ‘backports’, ‘Rcpp’, ‘rstudioapi’, ‘evaluate’, ‘highr’, ‘markdown’, ‘stringr’, ‘yaml’, ‘xfun’, ‘askpass’, ‘callr’, ‘cli’, ‘crayon’, ‘desc’, ‘digest’, ‘pkgbuild’, ‘prettyunits’, ‘R6’, ‘rprojroot’, ‘sessioninfo’, ‘withr’, ‘xopen’, ‘htmltools’, ‘base64enc’, ‘jsonlite’, ‘mime’, ‘tinytex’, ‘ellipsis’, ‘magrittr’, ‘pkgload’, ‘praise’, ‘rlang’
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/ps_1.3.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 261887 bytes (255 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m===
[0m
[91m=
[0m
[91m===
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
## downloaded 255 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/glue_1.3.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 122950 bytes (120 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=======
[0m
[91m======
[0m
[91m=======
[0m
[91m=======
[0m
[91m====
## downloaded 120 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/stringi_1.4.5.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 7284255 bytes (6.9 MB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
## downloaded 6.9 MB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/sys_3.3.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 20225 bytes (19 KB)
## ==================================================
## downloaded 19 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/processx_3.4.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 123430 bytes (120 KB)
## =
[0m
[91m==
[0m
[91m=======
[0m
[91m=
[0m
[91m=
[0m
[91m====
[0m
[91m=======
[0m
[91m=======
[0m
[91m======
[0m
[91m=======
[0m
[91m=======
## downloaded 120 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/assertthat_0.2.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 12742 bytes (12 KB)
## ==================================================
## downloaded 12 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/fansi_0.4.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 270906 bytes (264 KB)
## ===
[0m
[91m===
[0m
[91m===
[0m
[91m==
[0m
[91m===
[0m
[91m==
[0m
[91m===
[0m
[91m===
[0m
[91m==
[0m
[91m===
[0m
[91m=
[0m
[91m===
[0m
[91m==
[0m
[91m===
[0m
[91m===
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m===
[0m
[91m==
[0m
[91m
## 
[0m
[91mdownloaded 264 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/backports_1.1.5.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 14798 bytes (14 KB)
## =
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==============================================
## 
[0m
[91mdownloaded 14 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/Rcpp_1.0.3.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 2749025 bytes (2.6 MB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m
## downloaded 2.6 MB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/rstudioapi_0.10.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 61888 bytes (60 KB)
## ======
[0m
[91m======
[0m
[91m==============
[0m
[91m=============
[0m
[91m========
[0m
[91m=
[0m
[91m=
[0m
[91m=
## downloaded 60 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/evaluate_0.14.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 24206 bytes (23 KB)
## ==========
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=================================
## downloaded 23 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/highr_0.8.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 17445 bytes (17 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m===
[0m
[91m==
[0m
[91m===
[0m
[91m==
[0m
[91m====
[0m
[91m===
[0m
[91m=======================
[0m
[91m==
[0m
[91m===
## downloaded 17 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/markdown_1.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 81050 bytes (79 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=================
[0m
[91m==========
## downloaded 79 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/stringr_1.4.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 135777 bytes (132 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=====
[0m
[91m=
[0m
[91m=====
[0m
[91m======
[0m
[91m======
[0m
[91m==
[0m
[91m======
[0m
[91m======
[0m
[91m=======
## downloaded 132 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/yaml_2.2.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 89447 bytes (87 KB)
## ===============================
[0m
[91m===================
## downloaded 87 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/xfun_0.11.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 57700 bytes (56 KB)
## ==================================================
## downloaded 56 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/askpass_1.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 5730 bytes
## 
[0m
[91m====
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=====
[0m
[91m=
[0m
[91m=====================================
## downloaded 5730 bytes
##
## trying URL 'https://cran.rstudio.com/src/contrib/callr_3.4.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 100129 bytes (97 KB)
## =======
[0m
[91m===
[0m
[91m======
[0m
[91m======
[0m
[91m======
[0m
[91m========
[0m
[91m=========
[0m
[91m=====
## downloaded 97 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/cli_2.0.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 111914 bytes (109 KB)
## =======
[0m
[91m=======
[0m
[91m=======
[0m
[91m=======
[0m
[91m=======
[0m
[91m========
[0m
[91m=======
## downloaded 109 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/crayon_1.3.4.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 658694 bytes (643 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m==
## downloaded 643 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/desc_1.2.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 65612 bytes (64 KB)
## ===============
[0m
[91m============
[0m
[91m=============
[0m
[91m==========
## downloaded 64 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/digest_0.6.23.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 143316 bytes (139 KB)
## =====
[0m
[91m=======
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=====
[0m
[91m=====
## downloaded 139 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/pkgbuild_1.0.6.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 29322 bytes (28 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=========================
[0m
[91m=======================
## downloaded 28 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/prettyunits_1.1.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 10179 bytes
## ==================================================
[0m
[91m
## downloaded 10179 bytes
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/R6_2.4.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 35536 bytes (34 KB)
## ==================================================
## downloaded 34 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/rprojroot_1.3-2.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 50414 bytes (49 KB)
## ===============
[0m
[91m=================
[0m
[91m================
[0m
[91m==
[0m
[91m
## downloaded 49 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/sessioninfo_1.1.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 46027 bytes (44 KB)
## =================
[0m
[91m============
[0m
[91m===
[0m
[91m=
[0m
[91m====
[0m
[91m=
[0m
[91m=====
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m====
[0m
[91m
## downloaded 44 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/withr_2.1.2.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 53578 bytes (52 KB)
## ===
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m===========================================
## downloaded 52 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/xopen_1.0.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 11221 bytes (10 KB)
## ==================================================
## downloaded 10 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/htmltools_0.4.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 52542 bytes (51 KB)
## ===============
[0m
[91m===============
[0m
[91m====================
## downloaded 51 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/base64enc_0.1-3.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 7833 bytes
## 
[0m
[91m=
[0m
[91m=
[0m
[91m================================================
[0m
[91m
## downloaded 7833 bytes
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/jsonlite_1.6.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 1052728 bytes (1.0 MB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m
## downloaded 1.0 MB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/mime_0.8.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 12813 bytes (12 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m======
[0m
[91m=
[0m
[91m=
[0m
[91m========================================
## downloaded 12 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/tinytex_0.18.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 24265 bytes (23 KB)
## ==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m===
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=================
## downloaded 23 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/ellipsis_0.3.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 7371 bytes
## ==================================================
## downloaded 7371 bytes
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/magrittr_1.5.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 200504 bytes (195 KB)
## ===
[0m
[91m=====
[0m
[91m=
[0m
[91m====
[0m
[91m===
[0m
[91m====
[0m
[91m====
[0m
[91m====
[0m
[91m====
[0m
[91m====
[0m
[91m====
[0m
[91m====
[0m
[91m====
[0m
[91m==
## downloaded 195 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/pkgload_1.0.2.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 55605 bytes (54 KB)
## ====
[0m
[91m=
[0m
[91m=============================================
## downloaded 54 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/praise_1.0.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 6100 bytes
## ==================================================
## downloaded 6100 bytes
##
## trying URL 'https://cran.rstudio.com/src/contrib/rlang_0.4.2.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 807983 bytes (789 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
## downloaded 789 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/curl_4.3.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 673779 bytes (657 KB)
## =
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m==
## downloaded 657 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/knitr_1.26.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 883689 bytes (862 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
## downloaded 862 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/openssl_1.4.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 1206885 bytes (1.2 MB)
## ===
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
## downloaded 1.2 MB
##
## trying URL 'https://cran.rstudio.com/src/contrib/rcmdcheck_1.3.3.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 45380 bytes (44 KB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m===========================
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m
## 
[0m
[91mdownloaded 44 KB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/rmarkdown_2.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 3186667 bytes (3.0 MB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m==
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m
## 
[0m
[91mdownloaded 3.0 MB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/rcorpora_2.0.0.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip'
[0m
[91m length 1432100 bytes (1.4 MB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
## downloaded 1.4 MB
##
## 
[0m
[91mtrying URL 'https://cran.rstudio.com/src/contrib/testthat_2.3.1.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 247984 bytes (242 KB)
## ===
[0m
[91m==
[0m
[91m====
[0m
[91m===
[0m
[91m=
[0m
[91m===
[0m
[91m===
[0m
[91m===
[0m
[91m====
[0m
[91m===
[0m
[91m===
[0m
[91m====
[0m
[91m===
[0m
[91m===
[0m
[91m====
[0m
[91m====
## downloaded 242 KB
##
## trying URL 'https://cran.rstudio.com/src/contrib/uuid_0.1-2.tar.gz'
## 
[0m
[91mContent type 'application/x-gzip' length 46706 bytes (45 KB)
## ==============
[0m
[91m==================
[0m
[91m==================
## downloaded 45 KB
##
## 
[0m
[91m* installing *source* package ‘ps’ ...
## 
[0m
[91m** package ‘ps’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -Wall px.c -o px
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c api-common.c -o api-common.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c common.c -o common.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c extra.c -o extra.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c dummy.c -o dummy.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c posix.c -o posix.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c api-posix.c -o api-posix.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c linux.c -o linux.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c api-linux.c -o api-linux.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o ps.so init.o api-common.o common.o extra.o dummy.o posix.o api-posix.o linux.o api-linux.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling via 'install.libs.R' to /usr/local/lib/R/site-library/00LOCK-ps/00new/ps
## ** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## * DONE (ps)
## 
[0m
[91m* installing *source* package ‘glue’ ...
## 
[0m
[91m** package ‘glue’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c glue.c -o glue.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c trim.c -o trim.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o glue.so glue.o init.o trim.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-glue/00new/glue/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m*** copying figures
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (glue)
## 
[0m
[91m* installing *source* package ‘stringi’ ...
## 
[0m
[91m** package ‘stringi’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0mchecking for R_HOME... /usr/local/lib/R
## checking for R... /usr/local/lib/R/bin/R
## checking for endianness... little
## checking for R >= 3.1.0 for C++11 use... yes
## checking for R < 3.4.0 for CXX1X flag use... no
## checking for cat... /bin/cat
## checking for local ICUDT_DIR... icu61/data
## checking for gcc... gcc
## 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 accepts -g... yes
## checking for gcc option to accept ISO C89... none needed
## checking how to run the C preprocessor... gcc -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 elf.h usability... yes
## checking elf.h presence... yes
## checking for elf.h... yes
## checking whether we are using the GNU C++ compiler... yes
## checking whether g++ -std=gnu++11 accepts -g... yes
## checking whether the C++ compiler supports the long long type... yes
## checking whether the compiler implements namespaces... yes
## checking whether the compiler supports Standard Template Library... yes
## checking whether std::map is available... yes
## checking for pkg-config... no
## *** pkg-config could not be found
## *** Trying with "standard" fallback flags
## checking whether we may build an ICU4C-based project... no
## *** The available ICU4C cannot be used
## checking whether we may compile src/icu61/common/putil.cpp... yes
## checking whether we may compile src/icu61/i18n/number_affixutils.cpp... yes
## checking whether we can fetch icudt... 
[91mdownloading the ICU data library (icudt)
## 
[0m
[91moutput path: icu61/data/icudt61l.zip
## 
[0m
[91mtrying URL 'http://www.ibspan.waw.pl/~gagolews/stringi/icudt61l.zip'
## 
[0m
[91mContent type 'application/zip'
[0m
[91m length 10791080 bytes (10.3 MB)
## 
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m=
[0m
[91m
## 
[0m
[91mdownloaded 10.3 MB
##
## 
[0m
[91micudt fetch successful
## 
[0mconfigure: creating ./config.status
## config.status: creating src/Makevars
## config.status: creating src/uconfig_local.h
## config.status: creating src/install.libs.R
##
## *** stringi configure summary:
##     ICU_FOUND=0
##     ICUDT_DIR=icu61/data
##     ICU_BUNDLE_VERSION=61
##     ICUDT_ENDIANNESS=little
##     STRINGI_CXXSTD=CXX_STD=CXX11
##     STRINGI_CFLAGS=   -fpic
##     STRINGI_CPPFLAGS=-I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H
##     STRINGI_CXXFLAGS=   -fpic
##     STRINGI_LDFLAGS=
##     STRINGI_LIBS=
##
## *** compiler settings used:
##     CC=gcc
##     LD=g++ -std=gnu++11
##     CFLAGS=-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -fpic
##     CPPFLAGS=-I/usr/local/include   -UDEBUG -DNDEBUG
##     CXX=g++ -std=gnu++11
##     CXXFLAGS=-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -fpic
##     LDFLAGS=
##     LIBS=
##
## 
[91m** libs
## 
[0mg++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_brkiter.cpp -o stri_brkiter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_collator.cpp -o stri_collator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_common.cpp -o stri_common.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_compare.cpp -o stri_compare.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_base.cpp -o stri_container_base.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_bytesearch.cpp -o stri_container_bytesearch.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_listint.cpp -o stri_container_listint.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_listraw.cpp -o stri_container_listraw.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_listutf8.cpp -o stri_container_listutf8.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_regex.cpp -o stri_container_regex.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_usearch.cpp -o stri_container_usearch.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_utf16.cpp -o stri_container_utf16.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_utf8.cpp -o stri_container_utf8.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_container_utf8_indexable.cpp -o stri_container_utf8_indexable.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_encoding_conversion.cpp -o stri_encoding_conversion.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_encoding_detection.cpp -o stri_encoding_detection.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_encoding_management.cpp -o stri_encoding_management.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_escape.cpp -o stri_escape.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_exception.cpp -o stri_exception.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_ICU_settings.cpp -o stri_ICU_settings.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_join.cpp -o stri_join.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_length.cpp -o stri_length.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_pad.cpp -o stri_pad.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_prepare_arg.cpp -o stri_prepare_arg.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_random.cpp -o stri_random.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_reverse.cpp -o stri_reverse.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_count.cpp -o stri_search_class_count.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_detect.cpp -o stri_search_class_detect.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_extract.cpp -o stri_search_class_extract.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_locate.cpp -o stri_search_class_locate.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_replace.cpp -o stri_search_class_replace.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_split.cpp -o stri_search_class_split.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_startsendswith.cpp -o stri_search_class_startsendswith.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_subset.cpp -o stri_search_class_subset.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_class_trim.cpp -o stri_search_class_trim.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_common.cpp -o stri_search_common.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_coll_count.cpp -o stri_search_coll_count.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_coll_detect.cpp -o stri_search_coll_detect.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_coll_extract.cpp -o stri_search_coll_extract.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_coll_locate.cpp -o stri_search_coll_locate.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_coll_replace.cpp -o stri_search_coll_replace.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_coll_split.cpp -o stri_search_coll_split.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_coll_startsendswith.cpp -o stri_search_coll_startsendswith.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_coll_subset.cpp -o stri_search_coll_subset.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_boundaries_count.cpp -o stri_search_boundaries_count.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_boundaries_extract.cpp -o stri_search_boundaries_extract.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_boundaries_locate.cpp -o stri_search_boundaries_locate.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_boundaries_split.cpp -o stri_search_boundaries_split.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_fixed_count.cpp -o stri_search_fixed_count.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_fixed_detect.cpp -o stri_search_fixed_detect.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_fixed_extract.cpp -o stri_search_fixed_extract.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_fixed_locate.cpp -o stri_search_fixed_locate.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_fixed_replace.cpp -o stri_search_fixed_replace.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_fixed_split.cpp -o stri_search_fixed_split.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_fixed_subset.cpp -o stri_search_fixed_subset.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_fixed_startsendswith.cpp -o stri_search_fixed_startsendswith.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_in.cpp -o stri_search_in.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_other_split.cpp -o stri_search_other_split.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_regex_count.cpp -o stri_search_regex_count.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_regex_detect.cpp -o stri_search_regex_detect.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_regex_extract.cpp -o stri_search_regex_extract.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_regex_locate.cpp -o stri_search_regex_locate.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_regex_match.cpp -o stri_search_regex_match.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_regex_replace.cpp -o stri_search_regex_replace.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_regex_split.cpp -o stri_search_regex_split.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_search_regex_subset.cpp -o stri_search_regex_subset.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_sort.cpp -o stri_sort.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_stats.cpp -o stri_stats.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_stringi.cpp -o stri_stringi.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_sub.cpp -o stri_sub.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_test.cpp -o stri_test.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_time_zone.cpp -o stri_time_zone.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_time_calendar.cpp -o stri_time_calendar.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_time_symbols.cpp -o stri_time_symbols.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_time_format.cpp -o stri_time_format.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_trans_casemap.cpp -o stri_trans_casemap.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_trans_other.cpp -o stri_trans_other.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_trans_normalization.cpp -o stri_trans_normalization.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_trans_transliterate.cpp -o stri_trans_transliterate.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_ucnv.cpp -o stri_ucnv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_uloc.cpp -o stri_uloc.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_utils.cpp -o stri_utils.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stri_wrap.cpp -o stri_wrap.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/appendable.cpp -o icu61/common/appendable.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/bmpset.cpp -o icu61/common/bmpset.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/brkeng.cpp -o icu61/common/brkeng.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/brkiter.cpp -o icu61/common/brkiter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/bytesinkutil.cpp -o icu61/common/bytesinkutil.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/bytestream.cpp -o icu61/common/bytestream.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/bytestrie.cpp -o icu61/common/bytestrie.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/bytestriebuilder.cpp -o icu61/common/bytestriebuilder.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/bytestrieiterator.cpp -o icu61/common/bytestrieiterator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/caniter.cpp -o icu61/common/caniter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/chariter.cpp -o icu61/common/chariter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/charstr.cpp -o icu61/common/charstr.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/cmemory.cpp -o icu61/common/cmemory.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/cstr.cpp -o icu61/common/cstr.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/cstring.cpp -o icu61/common/cstring.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/cwchar.cpp -o icu61/common/cwchar.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/dictbe.cpp -o icu61/common/dictbe.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/dictionarydata.cpp -o icu61/common/dictionarydata.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/dtintrv.cpp -o icu61/common/dtintrv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/edits.cpp -o icu61/common/edits.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/errorcode.cpp -o icu61/common/errorcode.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/filteredbrk.cpp -o icu61/common/filteredbrk.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/filterednormalizer2.cpp -o icu61/common/filterednormalizer2.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/icudataver.cpp -o icu61/common/icudataver.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/icuplug.cpp -o icu61/common/icuplug.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/listformatter.cpp -o icu61/common/listformatter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/loadednormalizer2impl.cpp -o icu61/common/loadednormalizer2impl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/locavailable.cpp -o icu61/common/locavailable.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/locbased.cpp -o icu61/common/locbased.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/locdispnames.cpp -o icu61/common/locdispnames.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/locdspnm.cpp -o icu61/common/locdspnm.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/locid.cpp -o icu61/common/locid.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/loclikely.cpp -o icu61/common/loclikely.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/locmap.cpp -o icu61/common/locmap.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/locresdata.cpp -o icu61/common/locresdata.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/locutil.cpp -o icu61/common/locutil.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/messagepattern.cpp -o icu61/common/messagepattern.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/normalizer2.cpp -o icu61/common/normalizer2.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/normalizer2impl.cpp -o icu61/common/normalizer2impl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/normlzr.cpp -o icu61/common/normlzr.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/parsepos.cpp -o icu61/common/parsepos.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/patternprops.cpp -o icu61/common/patternprops.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/pluralmap.cpp -o icu61/common/pluralmap.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/propname.cpp -o icu61/common/propname.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/propsvec.cpp -o icu61/common/propsvec.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/punycode.cpp -o icu61/common/punycode.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/putil.cpp -o icu61/common/putil.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbi_cache.cpp -o icu61/common/rbbi_cache.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbi.cpp -o icu61/common/rbbi.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbidata.cpp -o icu61/common/rbbidata.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbinode.cpp -o icu61/common/rbbinode.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbirb.cpp -o icu61/common/rbbirb.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbiscan.cpp -o icu61/common/rbbiscan.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbisetb.cpp -o icu61/common/rbbisetb.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbistbl.cpp -o icu61/common/rbbistbl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/rbbitblb.cpp -o icu61/common/rbbitblb.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/resbund_cnv.cpp -o icu61/common/resbund_cnv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/resbund.cpp -o icu61/common/resbund.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/resource.cpp -o icu61/common/resource.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ruleiter.cpp -o icu61/common/ruleiter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/schriter.cpp -o icu61/common/schriter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/serv.cpp -o icu61/common/serv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/servlk.cpp -o icu61/common/servlk.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/servlkf.cpp -o icu61/common/servlkf.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/servls.cpp -o icu61/common/servls.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/servnotf.cpp -o icu61/common/servnotf.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/servrbf.cpp -o icu61/common/servrbf.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/servslkf.cpp -o icu61/common/servslkf.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/sharedobject.cpp -o icu61/common/sharedobject.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/simpleformatter.cpp -o icu61/common/simpleformatter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/stringpiece.cpp -o icu61/common/stringpiece.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/stringtriebuilder.cpp -o icu61/common/stringtriebuilder.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uarrsort.cpp -o icu61/common/uarrsort.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ubidi_props.cpp -o icu61/common/ubidi_props.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ubidi.cpp -o icu61/common/ubidi.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ubidiln.cpp -o icu61/common/ubidiln.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ubiditransform.cpp -o icu61/common/ubiditransform.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ubidiwrt.cpp -o icu61/common/ubidiwrt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ubrk.cpp -o icu61/common/ubrk.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucase.cpp -o icu61/common/ucase.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucasemap_titlecase_brkiter.cpp -o icu61/common/ucasemap_titlecase_brkiter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucasemap.cpp -o icu61/common/ucasemap.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucat.cpp -o icu61/common/ucat.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uchar.cpp -o icu61/common/uchar.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucharstrie.cpp -o icu61/common/ucharstrie.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucharstriebuilder.cpp -o icu61/common/ucharstriebuilder.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucharstrieiterator.cpp -o icu61/common/ucharstrieiterator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uchriter.cpp -o icu61/common/uchriter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucln_cmn.cpp -o icu61/common/ucln_cmn.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucmndata.cpp -o icu61/common/ucmndata.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_bld.cpp -o icu61/common/ucnv_bld.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_cb.cpp -o icu61/common/ucnv_cb.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_cnv.cpp -o icu61/common/ucnv_cnv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_ct.cpp -o icu61/common/ucnv_ct.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_err.cpp -o icu61/common/ucnv_err.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_ext.cpp -o icu61/common/ucnv_ext.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_io.cpp -o icu61/common/ucnv_io.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_lmb.cpp -o icu61/common/ucnv_lmb.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_set.cpp -o icu61/common/ucnv_set.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_u16.cpp -o icu61/common/ucnv_u16.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_u32.cpp -o icu61/common/ucnv_u32.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_u7.cpp -o icu61/common/ucnv_u7.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv_u8.cpp -o icu61/common/ucnv_u8.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv.cpp -o icu61/common/ucnv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnv2022.cpp -o icu61/common/ucnv2022.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnvbocu.cpp -o icu61/common/ucnvbocu.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnvdisp.cpp -o icu61/common/ucnvdisp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnvhz.cpp -o icu61/common/ucnvhz.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnvisci.cpp -o icu61/common/ucnvisci.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnvlat1.cpp -o icu61/common/ucnvlat1.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnvmbcs.cpp -o icu61/common/ucnvmbcs.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnvscsu.cpp -o icu61/common/ucnvscsu.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucnvsel.cpp -o icu61/common/ucnvsel.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucol_swp.cpp -o icu61/common/ucol_swp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ucurr.cpp -o icu61/common/ucurr.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/udata.cpp -o icu61/common/udata.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/udatamem.cpp -o icu61/common/udatamem.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/udataswp.cpp -o icu61/common/udataswp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uenum.cpp -o icu61/common/uenum.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uhash_us.cpp -o icu61/common/uhash_us.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uhash.cpp -o icu61/common/uhash.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uidna.cpp -o icu61/common/uidna.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uinit.cpp -o icu61/common/uinit.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uinvchar.cpp -o icu61/common/uinvchar.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uiter.cpp -o icu61/common/uiter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ulist.cpp -o icu61/common/ulist.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ulistformatter.cpp -o icu61/common/ulistformatter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uloc_keytype.cpp -o icu61/common/uloc_keytype.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uloc_tag.cpp -o icu61/common/uloc_tag.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uloc.cpp -o icu61/common/uloc.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/umapfile.cpp -o icu61/common/umapfile.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/umath.cpp -o icu61/common/umath.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/umutex.cpp -o icu61/common/umutex.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unames.cpp -o icu61/common/unames.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unifiedcache.cpp -o icu61/common/unifiedcache.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unifilt.cpp -o icu61/common/unifilt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unifunct.cpp -o icu61/common/unifunct.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uniset_closure.cpp -o icu61/common/uniset_closure.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uniset_props.cpp -o icu61/common/uniset_props.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uniset.cpp -o icu61/common/uniset.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unisetspan.cpp -o icu61/common/unisetspan.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unistr_case_locale.cpp -o icu61/common/unistr_case_locale.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unistr_case.cpp -o icu61/common/unistr_case.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unistr_cnv.cpp -o icu61/common/unistr_cnv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unistr_props.cpp -o icu61/common/unistr_props.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unistr_titlecase_brkiter.cpp -o icu61/common/unistr_titlecase_brkiter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unistr.cpp -o icu61/common/unistr.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unorm.cpp -o icu61/common/unorm.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/unormcmp.cpp -o icu61/common/unormcmp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uobject.cpp -o icu61/common/uobject.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uprops.cpp -o icu61/common/uprops.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ures_cnv.cpp -o icu61/common/ures_cnv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uresbund.cpp -o icu61/common/uresbund.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uresdata.cpp -o icu61/common/uresdata.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/usc_impl.cpp -o icu61/common/usc_impl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uscript_props.cpp -o icu61/common/uscript_props.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uscript.cpp -o icu61/common/uscript.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uset_props.cpp -o icu61/common/uset_props.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uset.cpp -o icu61/common/uset.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/usetiter.cpp -o icu61/common/usetiter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ushape.cpp -o icu61/common/ushape.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/usprep.cpp -o icu61/common/usprep.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustack.cpp -o icu61/common/ustack.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustr_cnv.cpp -o icu61/common/ustr_cnv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustr_titlecase_brkiter.cpp -o icu61/common/ustr_titlecase_brkiter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustr_wcs.cpp -o icu61/common/ustr_wcs.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustrcase_locale.cpp -o icu61/common/ustrcase_locale.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustrcase.cpp -o icu61/common/ustrcase.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustrenum.cpp -o icu61/common/ustrenum.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustrfmt.cpp -o icu61/common/ustrfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustring.cpp -o icu61/common/ustring.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/ustrtrns.cpp -o icu61/common/ustrtrns.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/utext.cpp -o icu61/common/utext.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/utf_impl.cpp -o icu61/common/utf_impl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/util_props.cpp -o icu61/common/util_props.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/util.cpp -o icu61/common/util.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/utrace.cpp -o icu61/common/utrace.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/utrie.cpp -o icu61/common/utrie.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/utrie2_builder.cpp -o icu61/common/utrie2_builder.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/utrie2.cpp -o icu61/common/utrie2.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uts46.cpp -o icu61/common/uts46.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/utypes.cpp -o icu61/common/utypes.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uvector.cpp -o icu61/common/uvector.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uvectr32.cpp -o icu61/common/uvectr32.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/uvectr64.cpp -o icu61/common/uvectr64.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/common/wintz.cpp -o icu61/common/wintz.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/affixpatternparser.cpp -o icu61/i18n/affixpatternparser.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/alphaindex.cpp -o icu61/i18n/alphaindex.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/anytrans.cpp -o icu61/i18n/anytrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/astro.cpp -o icu61/i18n/astro.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/basictz.cpp -o icu61/i18n/basictz.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/bocsu.cpp -o icu61/i18n/bocsu.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/brktrans.cpp -o icu61/i18n/brktrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/buddhcal.cpp -o icu61/i18n/buddhcal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/calendar.cpp -o icu61/i18n/calendar.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/casetrn.cpp -o icu61/i18n/casetrn.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/cecal.cpp -o icu61/i18n/cecal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/chnsecal.cpp -o icu61/i18n/chnsecal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/choicfmt.cpp -o icu61/i18n/choicfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/coleitr.cpp -o icu61/i18n/coleitr.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/coll.cpp -o icu61/i18n/coll.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collation.cpp -o icu61/i18n/collation.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationbuilder.cpp -o icu61/i18n/collationbuilder.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationcompare.cpp -o icu61/i18n/collationcompare.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationdata.cpp -o icu61/i18n/collationdata.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationdatabuilder.cpp -o icu61/i18n/collationdatabuilder.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationdatareader.cpp -o icu61/i18n/collationdatareader.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationdatawriter.cpp -o icu61/i18n/collationdatawriter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationfastlatin.cpp -o icu61/i18n/collationfastlatin.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationfastlatinbuilder.cpp -o icu61/i18n/collationfastlatinbuilder.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationfcd.cpp -o icu61/i18n/collationfcd.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationiterator.cpp -o icu61/i18n/collationiterator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationkeys.cpp -o icu61/i18n/collationkeys.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationroot.cpp -o icu61/i18n/collationroot.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationrootelements.cpp -o icu61/i18n/collationrootelements.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationruleparser.cpp -o icu61/i18n/collationruleparser.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationsets.cpp -o icu61/i18n/collationsets.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationsettings.cpp -o icu61/i18n/collationsettings.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationtailoring.cpp -o icu61/i18n/collationtailoring.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/collationweights.cpp -o icu61/i18n/collationweights.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/compactdecimalformat.cpp -o icu61/i18n/compactdecimalformat.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/coptccal.cpp -o icu61/i18n/coptccal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/cpdtrans.cpp -o icu61/i18n/cpdtrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/csdetect.cpp -o icu61/i18n/csdetect.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/csmatch.cpp -o icu61/i18n/csmatch.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/csr2022.cpp -o icu61/i18n/csr2022.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/csrecog.cpp -o icu61/i18n/csrecog.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/csrmbcs.cpp -o icu61/i18n/csrmbcs.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/csrsbcs.cpp -o icu61/i18n/csrsbcs.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/csrucode.cpp -o icu61/i18n/csrucode.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/csrutf8.cpp -o icu61/i18n/csrutf8.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/curramt.cpp -o icu61/i18n/curramt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/currfmt.cpp -o icu61/i18n/currfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/currpinf.cpp -o icu61/i18n/currpinf.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/currunit.cpp -o icu61/i18n/currunit.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/dangical.cpp -o icu61/i18n/dangical.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/datefmt.cpp -o icu61/i18n/datefmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/dayperiodrules.cpp -o icu61/i18n/dayperiodrules.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/dcfmtsym.cpp -o icu61/i18n/dcfmtsym.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/decContext.cpp -o icu61/i18n/decContext.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/decfmtst.cpp -o icu61/i18n/decfmtst.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/decimalformatpattern.cpp -o icu61/i18n/decimalformatpattern.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/decimfmt.cpp -o icu61/i18n/decimfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/decimfmtimpl.cpp -o icu61/i18n/decimfmtimpl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/decNumber.cpp -o icu61/i18n/decNumber.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/digitaffix.cpp -o icu61/i18n/digitaffix.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/digitaffixesandpadding.cpp -o icu61/i18n/digitaffixesandpadding.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/digitformatter.cpp -o icu61/i18n/digitformatter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/digitgrouping.cpp -o icu61/i18n/digitgrouping.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/digitinterval.cpp -o icu61/i18n/digitinterval.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/digitlst.cpp -o icu61/i18n/digitlst.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/double-conversion-bignum-dtoa.cpp -o icu61/i18n/double-conversion-bignum-dtoa.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/double-conversion-bignum.cpp -o icu61/i18n/double-conversion-bignum.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/double-conversion-cached-powers.cpp -o icu61/i18n/double-conversion-cached-powers.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/double-conversion-diy-fp.cpp -o icu61/i18n/double-conversion-diy-fp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/double-conversion-fast-dtoa.cpp -o icu61/i18n/double-conversion-fast-dtoa.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/double-conversion.cpp -o icu61/i18n/double-conversion.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/dtfmtsym.cpp -o icu61/i18n/dtfmtsym.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/dtitvfmt.cpp -o icu61/i18n/dtitvfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/dtitvinf.cpp -o icu61/i18n/dtitvinf.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/dtptngen.cpp -o icu61/i18n/dtptngen.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/dtrule.cpp -o icu61/i18n/dtrule.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/esctrn.cpp -o icu61/i18n/esctrn.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ethpccal.cpp -o icu61/i18n/ethpccal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/fmtable_cnv.cpp -o icu61/i18n/fmtable_cnv.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/fmtable.cpp -o icu61/i18n/fmtable.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/format.cpp -o icu61/i18n/format.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/fphdlimp.cpp -o icu61/i18n/fphdlimp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/fpositer.cpp -o icu61/i18n/fpositer.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/funcrepl.cpp -o icu61/i18n/funcrepl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/gender.cpp -o icu61/i18n/gender.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/gregocal.cpp -o icu61/i18n/gregocal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/gregoimp.cpp -o icu61/i18n/gregoimp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/hebrwcal.cpp -o icu61/i18n/hebrwcal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/indiancal.cpp -o icu61/i18n/indiancal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/inputext.cpp -o icu61/i18n/inputext.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/islamcal.cpp -o icu61/i18n/islamcal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/japancal.cpp -o icu61/i18n/japancal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/measfmt.cpp -o icu61/i18n/measfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/measunit.cpp -o icu61/i18n/measunit.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/measure.cpp -o icu61/i18n/measure.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/msgfmt.cpp -o icu61/i18n/msgfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/name2uni.cpp -o icu61/i18n/name2uni.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/nfrs.cpp -o icu61/i18n/nfrs.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/nfrule.cpp -o icu61/i18n/nfrule.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/nfsubs.cpp -o icu61/i18n/nfsubs.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/nortrans.cpp -o icu61/i18n/nortrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/nounit.cpp -o icu61/i18n/nounit.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/nultrans.cpp -o icu61/i18n/nultrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_affixutils.cpp -o icu61/i18n/number_affixutils.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_compact.cpp -o icu61/i18n/number_compact.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_decimalquantity.cpp -o icu61/i18n/number_decimalquantity.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_decimfmtprops.cpp -o icu61/i18n/number_decimfmtprops.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_fluent.cpp -o icu61/i18n/number_fluent.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_formatimpl.cpp -o icu61/i18n/number_formatimpl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_grouping.cpp -o icu61/i18n/number_grouping.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_integerwidth.cpp -o icu61/i18n/number_integerwidth.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_longnames.cpp -o icu61/i18n/number_longnames.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_modifiers.cpp -o icu61/i18n/number_modifiers.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_notation.cpp -o icu61/i18n/number_notation.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_padding.cpp -o icu61/i18n/number_padding.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_patternmodifier.cpp -o icu61/i18n/number_patternmodifier.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_patternstring.cpp -o icu61/i18n/number_patternstring.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_rounding.cpp -o icu61/i18n/number_rounding.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_scientific.cpp -o icu61/i18n/number_scientific.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/number_stringbuilder.cpp -o icu61/i18n/number_stringbuilder.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/numfmt.cpp -o icu61/i18n/numfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/numsys.cpp -o icu61/i18n/numsys.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/olsontz.cpp -o icu61/i18n/olsontz.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/persncal.cpp -o icu61/i18n/persncal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/pluralaffix.cpp -o icu61/i18n/pluralaffix.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/plurfmt.cpp -o icu61/i18n/plurfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/plurrule.cpp -o icu61/i18n/plurrule.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/precision.cpp -o icu61/i18n/precision.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/quant.cpp -o icu61/i18n/quant.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/quantityformatter.cpp -o icu61/i18n/quantityformatter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rbnf.cpp -o icu61/i18n/rbnf.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rbt_data.cpp -o icu61/i18n/rbt_data.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rbt_pars.cpp -o icu61/i18n/rbt_pars.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rbt_rule.cpp -o icu61/i18n/rbt_rule.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rbt_set.cpp -o icu61/i18n/rbt_set.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rbt.cpp -o icu61/i18n/rbt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rbtz.cpp -o icu61/i18n/rbtz.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/regexcmp.cpp -o icu61/i18n/regexcmp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/regeximp.cpp -o icu61/i18n/regeximp.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/regexst.cpp -o icu61/i18n/regexst.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/regextxt.cpp -o icu61/i18n/regextxt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/region.cpp -o icu61/i18n/region.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/reldatefmt.cpp -o icu61/i18n/reldatefmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/reldtfmt.cpp -o icu61/i18n/reldtfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rematch.cpp -o icu61/i18n/rematch.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/remtrans.cpp -o icu61/i18n/remtrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/repattrn.cpp -o icu61/i18n/repattrn.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/rulebasedcollator.cpp -o icu61/i18n/rulebasedcollator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/scientificnumberformatter.cpp -o icu61/i18n/scientificnumberformatter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/scriptset.cpp -o icu61/i18n/scriptset.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/search.cpp -o icu61/i18n/search.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/selfmt.cpp -o icu61/i18n/selfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/sharedbreakiterator.cpp -o icu61/i18n/sharedbreakiterator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/simpletz.cpp -o icu61/i18n/simpletz.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/smallintformatter.cpp -o icu61/i18n/smallintformatter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/smpdtfmt.cpp -o icu61/i18n/smpdtfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/smpdtfst.cpp -o icu61/i18n/smpdtfst.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/sortkey.cpp -o icu61/i18n/sortkey.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/standardplural.cpp -o icu61/i18n/standardplural.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/strmatch.cpp -o icu61/i18n/strmatch.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/strrepl.cpp -o icu61/i18n/strrepl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/stsearch.cpp -o icu61/i18n/stsearch.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/taiwncal.cpp -o icu61/i18n/taiwncal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/timezone.cpp -o icu61/i18n/timezone.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/titletrn.cpp -o icu61/i18n/titletrn.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tmunit.cpp -o icu61/i18n/tmunit.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tmutamt.cpp -o icu61/i18n/tmutamt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tmutfmt.cpp -o icu61/i18n/tmutfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tolowtrn.cpp -o icu61/i18n/tolowtrn.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/toupptrn.cpp -o icu61/i18n/toupptrn.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/translit.cpp -o icu61/i18n/translit.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/transreg.cpp -o icu61/i18n/transreg.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tridpars.cpp -o icu61/i18n/tridpars.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tzfmt.cpp -o icu61/i18n/tzfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tzgnames.cpp -o icu61/i18n/tzgnames.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tznames_impl.cpp -o icu61/i18n/tznames_impl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tznames.cpp -o icu61/i18n/tznames.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tzrule.cpp -o icu61/i18n/tzrule.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/tztrans.cpp -o icu61/i18n/tztrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ucal.cpp -o icu61/i18n/ucal.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ucln_in.cpp -o icu61/i18n/ucln_in.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ucol_res.cpp -o icu61/i18n/ucol_res.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ucol_sit.cpp -o icu61/i18n/ucol_sit.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ucol.cpp -o icu61/i18n/ucol.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ucoleitr.cpp -o icu61/i18n/ucoleitr.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ucsdet.cpp -o icu61/i18n/ucsdet.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/udat.cpp -o icu61/i18n/udat.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/udateintervalformat.cpp -o icu61/i18n/udateintervalformat.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/udatpg.cpp -o icu61/i18n/udatpg.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ufieldpositer.cpp -o icu61/i18n/ufieldpositer.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uitercollationiterator.cpp -o icu61/i18n/uitercollationiterator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ulocdata.cpp -o icu61/i18n/ulocdata.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/umsg.cpp -o icu61/i18n/umsg.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/unesctrn.cpp -o icu61/i18n/unesctrn.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uni2name.cpp -o icu61/i18n/uni2name.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/unum.cpp -o icu61/i18n/unum.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/unumsys.cpp -o icu61/i18n/unumsys.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/upluralrules.cpp -o icu61/i18n/upluralrules.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uregex.cpp -o icu61/i18n/uregex.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uregexc.cpp -o icu61/i18n/uregexc.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uregion.cpp -o icu61/i18n/uregion.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/usearch.cpp -o icu61/i18n/usearch.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uspoof_build.cpp -o icu61/i18n/uspoof_build.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uspoof_conf.cpp -o icu61/i18n/uspoof_conf.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uspoof_impl.cpp -o icu61/i18n/uspoof_impl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/uspoof.cpp -o icu61/i18n/uspoof.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/utf16collationiterator.cpp -o icu61/i18n/utf16collationiterator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/utf8collationiterator.cpp -o icu61/i18n/utf8collationiterator.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/utmscale.cpp -o icu61/i18n/utmscale.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/utrans.cpp -o icu61/i18n/utrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/valueformatter.cpp -o icu61/i18n/valueformatter.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/visibledigits.cpp -o icu61/i18n/visibledigits.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/vtzone.cpp -o icu61/i18n/vtzone.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/vzone.cpp -o icu61/i18n/vzone.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/windtfmt.cpp -o icu61/i18n/windtfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/winnmfmt.cpp -o icu61/i18n/winnmfmt.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/wintzimpl.cpp -o icu61/i18n/wintzimpl.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/zonemeta.cpp -o icu61/i18n/zonemeta.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/zrule.cpp -o icu61/i18n/zrule.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/i18n/ztrans.cpp -o icu61/i18n/ztrans.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I. -Iicu61       -Iicu61/unicode -Iicu61/common       -Iicu61/i18n -DU_STATIC_IMPLEMENTATION       -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL   -UDEBUG -DNDEBUG -DU_HAVE_ELF_H  -I/usr/local/include -fpic -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c icu61/stubdata/stubdata.cpp -o icu61/stubdata/stubdata.o
## g++ -std=gnu++11 -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o stringi.so stri_brkiter.o stri_collator.o stri_common.o stri_compare.o stri_container_base.o stri_container_bytesearch.o stri_container_listint.o stri_container_listraw.o stri_container_listutf8.o stri_container_regex.o stri_container_usearch.o stri_container_utf16.o stri_container_utf8.o stri_container_utf8_indexable.o stri_encoding_conversion.o stri_encoding_detection.o stri_encoding_management.o stri_escape.o stri_exception.o stri_ICU_settings.o stri_join.o stri_length.o stri_pad.o stri_prepare_arg.o stri_random.o stri_reverse.o stri_search_class_count.o stri_search_class_detect.o stri_search_class_extract.o stri_search_class_locate.o stri_search_class_replace.o stri_search_class_split.o stri_search_class_startsendswith.o stri_search_class_subset.o stri_search_class_trim.o stri_search_common.o stri_search_coll_count.o stri_search_coll_detect.o stri_search_coll_extract.o stri_search_coll_locate.o stri_search_coll_replace.o stri_search_coll_split.o stri_search_coll_startsendswith.o stri_search_coll_subset.o stri_search_boundaries_count.o stri_search_boundaries_extract.o stri_search_boundaries_locate.o stri_search_boundaries_split.o stri_search_fixed_count.o stri_search_fixed_detect.o stri_search_fixed_extract.o stri_search_fixed_locate.o stri_search_fixed_replace.o stri_search_fixed_split.o stri_search_fixed_subset.o stri_search_fixed_startsendswith.o stri_search_in.o stri_search_other_split.o stri_search_regex_count.o stri_search_regex_detect.o stri_search_regex_extract.o stri_search_regex_locate.o stri_search_regex_match.o stri_search_regex_replace.o stri_search_regex_split.o stri_search_regex_subset.o stri_sort.o stri_stats.o stri_stringi.o stri_sub.o stri_test.o stri_time_zone.o stri_time_calendar.o stri_time_symbols.o stri_time_format.o stri_trans_casemap.o stri_trans_other.o stri_trans_normalization.o stri_trans_transliterate.o stri_ucnv.o stri_uloc.o stri_utils.o stri_wrap.o icu61/common/appendable.o icu61/common/bmpset.o icu61/common/brkeng.o icu61/common/brkiter.o icu61/common/bytesinkutil.o icu61/common/bytestream.o icu61/common/bytestrie.o icu61/common/bytestriebuilder.o icu61/common/bytestrieiterator.o icu61/common/caniter.o icu61/common/chariter.o icu61/common/charstr.o icu61/common/cmemory.o icu61/common/cstr.o icu61/common/cstring.o icu61/common/cwchar.o icu61/common/dictbe.o icu61/common/dictionarydata.o icu61/common/dtintrv.o icu61/common/edits.o icu61/common/errorcode.o icu61/common/filteredbrk.o icu61/common/filterednormalizer2.o icu61/common/icudataver.o icu61/common/icuplug.o icu61/common/listformatter.o icu61/common/loadednormalizer2impl.o icu61/common/locavailable.o icu61/common/locbased.o icu61/common/locdispnames.o icu61/common/locdspnm.o icu61/common/locid.o icu61/common/loclikely.o icu61/common/locmap.o icu61/common/locresdata.o icu61/common/locutil.o icu61/common/messagepattern.o icu61/common/normalizer2.o icu61/common/normalizer2impl.o icu61/common/normlzr.o icu61/common/parsepos.o icu61/common/patternprops.o icu61/common/pluralmap.o icu61/common/propname.o icu61/common/propsvec.o icu61/common/punycode.o icu61/common/putil.o icu61/common/rbbi_cache.o icu61/common/rbbi.o icu61/common/rbbidata.o icu61/common/rbbinode.o icu61/common/rbbirb.o icu61/common/rbbiscan.o icu61/common/rbbisetb.o icu61/common/rbbistbl.o icu61/common/rbbitblb.o icu61/common/resbund_cnv.o icu61/common/resbund.o icu61/common/resource.o icu61/common/ruleiter.o icu61/common/schriter.o icu61/common/serv.o icu61/common/servlk.o icu61/common/servlkf.o icu61/common/servls.o icu61/common/servnotf.o icu61/common/servrbf.o icu61/common/servslkf.o icu61/common/sharedobject.o icu61/common/simpleformatter.o icu61/common/stringpiece.o icu61/common/stringtriebuilder.o icu61/common/uarrsort.o icu61/common/ubidi_props.o icu61/common/ubidi.o icu61/common/ubidiln.o icu61/common/ubiditransform.o icu61/common/ubidiwrt.o icu61/common/ubrk.o icu61/common/ucase.o icu61/common/ucasemap_titlecase_brkiter.o icu61/common/ucasemap.o icu61/common/ucat.o icu61/common/uchar.o icu61/common/ucharstrie.o icu61/common/ucharstriebuilder.o icu61/common/ucharstrieiterator.o icu61/common/uchriter.o icu61/common/ucln_cmn.o icu61/common/ucmndata.o icu61/common/ucnv_bld.o icu61/common/ucnv_cb.o icu61/common/ucnv_cnv.o icu61/common/ucnv_ct.o icu61/common/ucnv_err.o icu61/common/ucnv_ext.o icu61/common/ucnv_io.o icu61/common/ucnv_lmb.o icu61/common/ucnv_set.o icu61/common/ucnv_u16.o icu61/common/ucnv_u32.o icu61/common/ucnv_u7.o icu61/common/ucnv_u8.o icu61/common/ucnv.o icu61/common/ucnv2022.o icu61/common/ucnvbocu.o icu61/common/ucnvdisp.o icu61/common/ucnvhz.o icu61/common/ucnvisci.o icu61/common/ucnvlat1.o icu61/common/ucnvmbcs.o icu61/common/ucnvscsu.o icu61/common/ucnvsel.o icu61/common/ucol_swp.o icu61/common/ucurr.o icu61/common/udata.o icu61/common/udatamem.o icu61/common/udataswp.o icu61/common/uenum.o icu61/common/uhash_us.o icu61/common/uhash.o icu61/common/uidna.o icu61/common/uinit.o icu61/common/uinvchar.o icu61/common/uiter.o icu61/common/ulist.o icu61/common/ulistformatter.o icu61/common/uloc_keytype.o icu61/common/uloc_tag.o icu61/common/uloc.o icu61/common/umapfile.o icu61/common/umath.o icu61/common/umutex.o icu61/common/unames.o icu61/common/unifiedcache.o icu61/common/unifilt.o icu61/common/unifunct.o icu61/common/uniset_closure.o icu61/common/uniset_props.o icu61/common/uniset.o icu61/common/unisetspan.o icu61/common/unistr_case_locale.o icu61/common/unistr_case.o icu61/common/unistr_cnv.o icu61/common/unistr_props.o icu61/common/unistr_titlecase_brkiter.o icu61/common/unistr.o icu61/common/unorm.o icu61/common/unormcmp.o icu61/common/uobject.o icu61/common/uprops.o icu61/common/ures_cnv.o icu61/common/uresbund.o icu61/common/uresdata.o icu61/common/usc_impl.o icu61/common/uscript_props.o icu61/common/uscript.o icu61/common/uset_props.o icu61/common/uset.o icu61/common/usetiter.o icu61/common/ushape.o icu61/common/usprep.o icu61/common/ustack.o icu61/common/ustr_cnv.o icu61/common/ustr_titlecase_brkiter.o icu61/common/ustr_wcs.o icu61/common/ustrcase_locale.o icu61/common/ustrcase.o icu61/common/ustrenum.o icu61/common/ustrfmt.o icu61/common/ustring.o icu61/common/ustrtrns.o icu61/common/utext.o icu61/common/utf_impl.o icu61/common/util_props.o icu61/common/util.o icu61/common/utrace.o icu61/common/utrie.o icu61/common/utrie2_builder.o icu61/common/utrie2.o icu61/common/uts46.o icu61/common/utypes.o icu61/common/uvector.o icu61/common/uvectr32.o icu61/common/uvectr64.o icu61/common/wintz.o icu61/i18n/affixpatternparser.o icu61/i18n/alphaindex.o icu61/i18n/anytrans.o icu61/i18n/astro.o icu61/i18n/basictz.o icu61/i18n/bocsu.o icu61/i18n/brktrans.o icu61/i18n/buddhcal.o icu61/i18n/calendar.o icu61/i18n/casetrn.o icu61/i18n/cecal.o icu61/i18n/chnsecal.o icu61/i18n/choicfmt.o icu61/i18n/coleitr.o icu61/i18n/coll.o icu61/i18n/collation.o icu61/i18n/collationbuilder.o icu61/i18n/collationcompare.o icu61/i18n/collationdata.o icu61/i18n/collationdatabuilder.o icu61/i18n/collationdatareader.o icu61/i18n/collationdatawriter.o icu61/i18n/collationfastlatin.o icu61/i18n/collationfastlatinbuilder.o icu61/i18n/collationfcd.o icu61/i18n/collationiterator.o icu61/i18n/collationkeys.o icu61/i18n/collationroot.o icu61/i18n/collationrootelements.o icu61/i18n/collationruleparser.o icu61/i18n/collationsets.o icu61/i18n/collationsettings.o icu61/i18n/collationtailoring.o icu61/i18n/collationweights.o icu61/i18n/compactdecimalformat.o icu61/i18n/coptccal.o icu61/i18n/cpdtrans.o icu61/i18n/csdetect.o icu61/i18n/csmatch.o icu61/i18n/csr2022.o icu61/i18n/csrecog.o icu61/i18n/csrmbcs.o icu61/i18n/csrsbcs.o icu61/i18n/csrucode.o icu61/i18n/csrutf8.o icu61/i18n/curramt.o icu61/i18n/currfmt.o icu61/i18n/currpinf.o icu61/i18n/currunit.o icu61/i18n/dangical.o icu61/i18n/datefmt.o icu61/i18n/dayperiodrules.o icu61/i18n/dcfmtsym.o icu61/i18n/decContext.o icu61/i18n/decfmtst.o icu61/i18n/decimalformatpattern.o icu61/i18n/decimfmt.o icu61/i18n/decimfmtimpl.o icu61/i18n/decNumber.o icu61/i18n/digitaffix.o icu61/i18n/digitaffixesandpadding.o icu61/i18n/digitformatter.o icu61/i18n/digitgrouping.o icu61/i18n/digitinterval.o icu61/i18n/digitlst.o icu61/i18n/double-conversion-bignum-dtoa.o icu61/i18n/double-conversion-bignum.o icu61/i18n/double-conversion-cached-powers.o icu61/i18n/double-conversion-diy-fp.o icu61/i18n/double-conversion-fast-dtoa.o icu61/i18n/double-conversion.o icu61/i18n/dtfmtsym.o icu61/i18n/dtitvfmt.o icu61/i18n/dtitvinf.o icu61/i18n/dtptngen.o icu61/i18n/dtrule.o icu61/i18n/esctrn.o icu61/i18n/ethpccal.o icu61/i18n/fmtable_cnv.o icu61/i18n/fmtable.o icu61/i18n/format.o icu61/i18n/fphdlimp.o icu61/i18n/fpositer.o icu61/i18n/funcrepl.o icu61/i18n/gender.o icu61/i18n/gregocal.o icu61/i18n/gregoimp.o icu61/i18n/hebrwcal.o icu61/i18n/indiancal.o icu61/i18n/inputext.o icu61/i18n/islamcal.o icu61/i18n/japancal.o icu61/i18n/measfmt.o icu61/i18n/measunit.o icu61/i18n/measure.o icu61/i18n/msgfmt.o icu61/i18n/name2uni.o icu61/i18n/nfrs.o icu61/i18n/nfrule.o icu61/i18n/nfsubs.o icu61/i18n/nortrans.o icu61/i18n/nounit.o icu61/i18n/nultrans.o icu61/i18n/number_affixutils.o icu61/i18n/number_compact.o icu61/i18n/number_decimalquantity.o icu61/i18n/number_decimfmtprops.o icu61/i18n/number_fluent.o icu61/i18n/number_formatimpl.o icu61/i18n/number_grouping.o icu61/i18n/number_integerwidth.o icu61/i18n/number_longnames.o icu61/i18n/number_modifiers.o icu61/i18n/number_notation.o icu61/i18n/number_padding.o icu61/i18n/number_patternmodifier.o icu61/i18n/number_patternstring.o icu61/i18n/number_rounding.o icu61/i18n/number_scientific.o icu61/i18n/number_stringbuilder.o icu61/i18n/numfmt.o icu61/i18n/numsys.o icu61/i18n/olsontz.o icu61/i18n/persncal.o icu61/i18n/pluralaffix.o icu61/i18n/plurfmt.o icu61/i18n/plurrule.o icu61/i18n/precision.o icu61/i18n/quant.o icu61/i18n/quantityformatter.o icu61/i18n/rbnf.o icu61/i18n/rbt_data.o icu61/i18n/rbt_pars.o icu61/i18n/rbt_rule.o icu61/i18n/rbt_set.o icu61/i18n/rbt.o icu61/i18n/rbtz.o icu61/i18n/regexcmp.o icu61/i18n/regeximp.o icu61/i18n/regexst.o icu61/i18n/regextxt.o icu61/i18n/region.o icu61/i18n/reldatefmt.o icu61/i18n/reldtfmt.o icu61/i18n/rematch.o icu61/i18n/remtrans.o icu61/i18n/repattrn.o icu61/i18n/rulebasedcollator.o icu61/i18n/scientificnumberformatter.o icu61/i18n/scriptset.o icu61/i18n/search.o icu61/i18n/selfmt.o icu61/i18n/sharedbreakiterator.o icu61/i18n/simpletz.o icu61/i18n/smallintformatter.o icu61/i18n/smpdtfmt.o icu61/i18n/smpdtfst.o icu61/i18n/sortkey.o icu61/i18n/standardplural.o icu61/i18n/strmatch.o icu61/i18n/strrepl.o icu61/i18n/stsearch.o icu61/i18n/taiwncal.o icu61/i18n/timezone.o icu61/i18n/titletrn.o icu61/i18n/tmunit.o icu61/i18n/tmutamt.o icu61/i18n/tmutfmt.o icu61/i18n/tolowtrn.o icu61/i18n/toupptrn.o icu61/i18n/translit.o icu61/i18n/transreg.o icu61/i18n/tridpars.o icu61/i18n/tzfmt.o icu61/i18n/tzgnames.o icu61/i18n/tznames_impl.o icu61/i18n/tznames.o icu61/i18n/tzrule.o icu61/i18n/tztrans.o icu61/i18n/ucal.o icu61/i18n/ucln_in.o icu61/i18n/ucol_res.o icu61/i18n/ucol_sit.o icu61/i18n/ucol.o icu61/i18n/ucoleitr.o icu61/i18n/ucsdet.o icu61/i18n/udat.o icu61/i18n/udateintervalformat.o icu61/i18n/udatpg.o icu61/i18n/ufieldpositer.o icu61/i18n/uitercollationiterator.o icu61/i18n/ulocdata.o icu61/i18n/umsg.o icu61/i18n/unesctrn.o icu61/i18n/uni2name.o icu61/i18n/unum.o icu61/i18n/unumsys.o icu61/i18n/upluralrules.o icu61/i18n/uregex.o icu61/i18n/uregexc.o icu61/i18n/uregion.o icu61/i18n/usearch.o icu61/i18n/uspoof_build.o icu61/i18n/uspoof_conf.o icu61/i18n/uspoof_impl.o icu61/i18n/uspoof.o icu61/i18n/utf16collationiterator.o icu61/i18n/utf8collationiterator.o icu61/i18n/utmscale.o icu61/i18n/utrans.o icu61/i18n/valueformatter.o icu61/i18n/visibledigits.o icu61/i18n/vtzone.o icu61/i18n/vzone.o icu61/i18n/windtfmt.o icu61/i18n/winnmfmt.o icu61/i18n/wintzimpl.o icu61/i18n/zonemeta.o icu61/i18n/zrule.o icu61/i18n/ztrans.o icu61/stubdata/stubdata.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling via 'install.libs.R' to /usr/local/lib/R/site-library/00LOCK-stringi/00new/stringi
## 
[0m
[91micudt already downloaded
## 
[0m
[91mdecompressing icudt archive icu61/data/icudt61l.zip to: /usr/local/lib/R/site-library/00LOCK-stringi/00new/stringi/libs
## 
[0m
[91micudt has been installed successfully
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (stringi)
## 
[0m
[91m* installing *source* package ‘sys’ ...
## 
[0m
[91m** package ‘sys’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c exec.c -o exec.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o sys.so exec.o init.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-sys/00new/sys/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (sys)
## 
[0m
[91m* installing *source* package ‘assertthat’ ...
## 
[0m
[91m** package ‘assertthat’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (assertthat)
## 
[0m
[91m* installing *source* package ‘fansi’ ...
## 
[0m
[91m** package ‘fansi’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c assumptions.c -o assumptions.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c has.c -o has.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c nchar.c -o nchar.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c read.c -o read.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c rnchar.c -o rnchar.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c state.c -o state.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c strip.c -o strip.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c strsplit.c -o strsplit.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c tabs.c -o tabs.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c tohtml.c -o tohtml.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unhandled.c -o unhandled.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unique.c -o unique.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c utf8.c -o utf8.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c utils.c -o utils.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c wrap.c -o wrap.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o fansi.so assumptions.o has.o init.o nchar.o read.o rnchar.o state.o strip.o strsplit.o tabs.o tohtml.o unhandled.o unique.o utf8.o utils.o wrap.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-fansi/00new/fansi/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (fansi)
## 
[0m
[91m* installing *source* package ‘backports’ ...
## 
[0m
[91m** package ‘backports’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c dotsElt.c -o dotsElt.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c dotsLength.c -o dotsLength.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o backports.so dotsElt.o dotsLength.o init.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-backports/00new/backports/libs
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (backports)
## 
[0m
[91m* installing *source* package ‘Rcpp’ ...
## 
[0m
[91m** package ‘Rcpp’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mg++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include/  -I/usr/local/include  -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/local/lib/R/include" -DNDEBUG -I../inst/include/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c attributes.cpp -o attributes.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c barrier.cpp -o barrier.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c date.cpp -o date.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c module.cpp -o module.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c rcpp_init.cpp -o rcpp_init.o
## g++ -std=gnu++11 -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o Rcpp.so api.o attributes.o barrier.o date.o module.o rcpp_init.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-Rcpp/00new/Rcpp/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (Rcpp)
## 
[0m
[91m* installing *source* package ‘rstudioapi’ ...
## 
[0m
[91m** package ‘rstudioapi’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (rstudioapi)
## 
[0m
[91m* installing *source* package ‘evaluate’ ...
## 
[0m
[91m** package ‘evaluate’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (evaluate)
## 
[0m
[91m* installing *source* package ‘highr’ ...
## 
[0m
[91m** package ‘highr’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (highr)
## 
[0m
[91m* installing *source* package ‘yaml’ ...
## 
[0m
[91m** package ‘yaml’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c api.c -o api.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c dumper.c -o dumper.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c emitter.c -o emitter.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c implicit.c -o implicit.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c loader.c -o loader.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c parser.c -o parser.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c r_emit.c -o r_emit.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c r_ext.c -o r_ext.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c r_parse.c -o r_parse.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c reader.c -o reader.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c scanner.c -o scanner.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I. -DNDEBUG  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c writer.c -o writer.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o yaml.so api.o dumper.o emitter.o implicit.o loader.o parser.o r_emit.o r_ext.o r_parse.o reader.o scanner.o writer.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-yaml/00new/yaml/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (yaml)
## 
[0m
[91m* installing *source* package ‘xfun’ ...
## 
[0m
[91m** package ‘xfun’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (xfun)
## 
[0m
[91m* installing *source* package ‘crayon’ ...
## 
[0m
[91m** package ‘crayon’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (crayon)
## 
[0m
[91m* installing *source* package ‘digest’ ...
## 
[0m
[91m** package ‘digest’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mg++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c SpookyV2.cpp -o SpookyV2.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c aes.c -o aes.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c crc32.c -o crc32.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c digest.c -o digest.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c digest2int.c -o digest2int.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c md5.c -o md5.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c pmurhash.c -o pmurhash.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c raes.c -o raes.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c sha1.c -o sha1.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c sha2.c -o sha2.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c sha256.c -o sha256.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c spooky_serialize.cpp -o spooky_serialize.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c xxhash.c -o xxhash.o
## g++ -std=gnu++11 -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o digest.so SpookyV2.o aes.o crc32.o digest.o digest2int.o init.o md5.o pmurhash.o raes.o sha1.o sha2.o sha256.o spooky_serialize.o xxhash.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-digest/00new/digest/libs
## 
[0m
[91m** R
## 
[0m
[91m** demo
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (digest)
## 
[0m
[91m* installing *source* package ‘prettyunits’ ...
## 
[0m
[91m** package ‘prettyunits’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (prettyunits)
## 
[0m
[91m* installing *source* package ‘R6’ ...
## 
[0m
[91m** package ‘R6’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (R6)
## 
[0m
[91m* installing *source* package ‘withr’ ...
## 
[0m
[91m** package ‘withr’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (withr)
## 
[0m
[91m* installing *source* package ‘base64enc’ ...
## 
[0m
[91m** package ‘base64enc’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c base64.c -o base64.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c uriencode.c -o uriencode.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c utf8.c -o utf8.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o base64enc.so base64.o uriencode.o utf8.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-base64enc/00new/base64enc/libs
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (base64enc)
## 
[0m
[91m* installing *source* package ‘jsonlite’ ...
## 
[0m
[91m** package ‘jsonlite’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c base64.c -o base64.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c collapse_array.c -o collapse_array.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c collapse_object.c -o collapse_object.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c collapse_pretty.c -o collapse_pretty.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c escape_chars.c -o escape_chars.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c integer64_to_na.c -o integer64_to_na.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c is_datelist.c -o is_datelist.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c is_recordlist.c -o is_recordlist.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c is_scalarlist.c -o is_scalarlist.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c modp_numtoa.c -o modp_numtoa.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c null_to_na.c -o null_to_na.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c num_to_char.c -o num_to_char.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c parse.c -o parse.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c prettify.c -o prettify.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c push_parser.c -o push_parser.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c r-base64.c -o r-base64.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c register.c -o register.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c row_collapse.c -o row_collapse.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c transpose_list.c -o transpose_list.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c validate.c -o validate.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c yajl/yajl.c -o yajl/yajl.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c yajl/yajl_alloc.c -o yajl/yajl_alloc.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c yajl/yajl_buf.c -o yajl/yajl_buf.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c yajl/yajl_encode.c -o yajl/yajl_encode.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c yajl/yajl_gen.c -o yajl/yajl_gen.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c yajl/yajl_lex.c -o yajl/yajl_lex.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c yajl/yajl_parser.c -o yajl/yajl_parser.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -Iyajl/api  -I/usr/local/include -fvisibility=hidden  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c yajl/yajl_tree.c -o yajl/yajl_tree.o
## ar rcs yajl/libstatyajl.a yajl/yajl.o yajl/yajl_alloc.o yajl/yajl_buf.o yajl/yajl_encode.o yajl/yajl_gen.o yajl/yajl_lex.o yajl/yajl_parser.o yajl/yajl_tree.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o jsonlite.so base64.o collapse_array.o collapse_object.o collapse_pretty.o escape_chars.o integer64_to_na.o is_datelist.o is_recordlist.o is_scalarlist.o modp_numtoa.o null_to_na.o num_to_char.o parse.o prettify.o push_parser.o r-base64.o register.o row_collapse.o transpose_list.o validate.o -Lyajl -lstatyajl -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-jsonlite/00new/jsonlite/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (jsonlite)
## 
[0m
[91m* installing *source* package ‘mime’ ...
## 
[0m
[91m** package ‘mime’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c rawmatch.c -o rawmatch.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o mime.so init.o rawmatch.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-mime/00new/mime/libs
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (mime)
## 
[0m
[91m* installing *source* package ‘magrittr’ ...
## 
[0m
[91m** package ‘magrittr’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (magrittr)
## 
[0m
[91m* installing *source* package ‘praise’ ...
## 
[0m
[91m** package ‘praise’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (praise)
## 
[0m
[91m* installing *source* package ‘rlang’ ...
## 
[0m
[91m** package ‘rlang’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG -I./lib/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c capture.c -o capture.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I./lib/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c export.c -o export.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I./lib/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c internal.c -o internal.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I./lib/  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c lib.c -o lib.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o rlang.so capture.o export.o internal.o lib.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-rlang/00new/rlang/libs
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m*** copying figures
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (rlang)
## 
[0m
[91m* installing *source* package ‘curl’ ...
## 
[0m
[91m** package ‘curl’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0mUsing PKG_CFLAGS=
## Using PKG_LIBS=-lcurl
## 
[91m** libs
## 
[0mrm -f curl.so callbacks.o curl.o download.o escape.o fetch.o form.o getdate.o handle.o ieproxy.o init.o interrupt.o multi.o nslookup.o reflist.o split.o ssl.o typechecking.o utils.o version.o winidn.o writer.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c callbacks.c -o callbacks.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c curl.c -o curl.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c download.c -o download.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c escape.c -o escape.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c fetch.c -o fetch.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c form.c -o form.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c getdate.c -o getdate.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c handle.c -o handle.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c ieproxy.c -o ieproxy.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -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 -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c interrupt.c -o interrupt.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c multi.c -o multi.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c nslookup.c -o nslookup.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c reflist.c -o reflist.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c split.c -o split.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c ssl.c -o ssl.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c typechecking.c -o typechecking.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -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 -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -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 -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c winidn.c -o winidn.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -DSTRICT_R_HEADERS  -I/usr/local/include -fvisibility=hidden -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c writer.c -o writer.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o curl.so callbacks.o curl.o download.o escape.o fetch.o form.o getdate.o handle.o ieproxy.o init.o interrupt.o multi.o nslookup.o reflist.o split.o ssl.o typechecking.o utils.o version.o winidn.o writer.o -lcurl -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-curl/00new/curl/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (curl)
## 
[0m
[91m* installing *source* package ‘uuid’ ...
## 
[0m
[91m** package ‘uuid’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m'config' variable 'CPP' is deprecated
## 
[0mchecking for gcc... gcc
## 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 accepts -g... yes
## checking for gcc option to accept ISO C89... none needed
## checking how to run the C preprocessor... gcc -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 netinet/in.h usability... yes
## checking netinet/in.h presence... yes
## checking for netinet/in.h... yes
## checking for stdlib.h... (cached) yes
## checking sys/file.h usability... yes
## checking sys/file.h presence... yes
## checking for sys/file.h... yes
## checking sys/ioctl.h usability... yes
## checking sys/ioctl.h presence... yes
## checking for sys/ioctl.h... yes
## checking sys/socket.h usability... yes
## checking sys/socket.h presence... yes
## checking for sys/socket.h... yes
## checking sys/sockio.h usability... no
## checking sys/sockio.h presence... no
## checking for sys/sockio.h... no
## checking sys/syscall.h usability... yes
## checking sys/syscall.h presence... yes
## checking for sys/syscall.h... yes
## checking sys/time.h usability... yes
## checking sys/time.h presence... yes
## checking for sys/time.h... yes
## checking sys/un.h usability... yes
## checking sys/un.h presence... yes
## checking for sys/un.h... yes
## checking for unistd.h... (cached) yes
## checking for net/if.h... yes
## checking for net/if_dl.h... no
## checking for jrand48... yes
## checking for flock... yes
## checking for struct sockaddr.sa_len... no
## configure: creating ./config.status
## config.status: creating src/Makevars
## config.status: creating src/config.h
## 
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c R.c -o R.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c clear.c -o clear.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c compare.c -o compare.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c copy.c -o copy.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c gen_uuid.c -o gen_uuid.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c isnull.c -o isnull.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c pack.c -o pack.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c parse.c -o parse.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unpack.c -o unpack.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I/usr/local/include  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unparse.c -o unparse.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o uuid.so R.o clear.o compare.o copy.o gen_uuid.o isnull.o pack.o parse.o unpack.o unparse.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-uuid/00new/uuid/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (uuid)
## 
[0m
[91m* installing *source* package ‘processx’ ...
## 
[0m
[91m** package ‘processx’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -Wall tools/px.c -o tools/px
## gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  supervisor/supervisor.c supervisor/utils.c \
##       -o supervisor/supervisor
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c base64.c -o base64.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c client.c -o client.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c errors.c -o errors.o
## gcc -shared -L"/usr/local/lib/R/lib" -L/usr/local/lib -o client.so base64.o client.o errors.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c poll.c -o poll.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c processx-connection.c -o processx-connection.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c processx-vector.c -o processx-vector.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c create-time.c -o create-time.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unix/childlist.c -o unix/childlist.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unix/connection.c -o unix/connection.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unix/processx.c -o unix/processx.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unix/sigchld.c -o unix/sigchld.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unix/utils.c -o unix/utils.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unix/named_pipe.c -o unix/named_pipe.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o processx.so init.o poll.o errors.o processx-connection.o processx-vector.o create-time.o base64.o unix/childlist.o unix/connection.o unix/processx.o unix/sigchld.o unix/utils.o unix/named_pipe.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling via 'install.libs.R' to /usr/local/lib/R/site-library/00LOCK-processx/00new/processx
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (processx)
## 
[0m
[91m* installing *source* package ‘markdown’ ...
## 
[0m
[91m** package ‘markdown’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c Rbase64.c -o Rbase64.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c Rinit.c -o Rinit.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c Rmarkdown.c -o Rmarkdown.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c autolink.c -o autolink.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c buffer.c -o buffer.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c houdini_href_e.c -o houdini_href_e.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c houdini_html_e.c -o houdini_html_e.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c html.c -o html.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c html_smartypants.c -o html_smartypants.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c markdown.c -o markdown.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stack.c -o stack.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o markdown.so Rbase64.o Rinit.o Rmarkdown.o autolink.o buffer.o houdini_href_e.o houdini_html_e.o html.o html_smartypants.o markdown.o stack.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-markdown/00new/markdown/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (markdown)
## 
[0m
[91m* installing *source* package ‘stringr’ ...
## 
[0m
[91m** package ‘stringr’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** data
## 
[0m
[91m*** moving datasets to lazyload DB
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m*** copying figures
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (stringr)
## 
[0m
[91m* installing *source* package ‘askpass’ ...
## 
[0m
[91m** package ‘askpass’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c askpass.c -o askpass.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o askpass.so askpass.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-askpass/00new/askpass/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## * DONE (askpass)
## 
[0m
[91m* installing *source* package ‘cli’ ...
## 
[0m
[91m** package ‘cli’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m*** copying figures
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (cli)
## 
[0m
[91m* installing *source* package ‘rprojroot’ ...
## 
[0m
[91m** package ‘rprojroot’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (rprojroot)
## 
[0m
[91m* installing *source* package ‘htmltools’ ...
## 
[0m
[91m** package ‘htmltools’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mg++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG  -I"/usr/local/lib/R/site-library/Rcpp/include" -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c RcppExports.cpp -o RcppExports.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG  -I"/usr/local/lib/R/site-library/Rcpp/include" -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG  -I"/usr/local/lib/R/site-library/Rcpp/include" -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c template.cpp -o template.o
## g++ -std=gnu++11 -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o htmltools.so RcppExports.o init.o template.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-htmltools/00new/htmltools/libs
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (htmltools)
## 
[0m
[91m* installing *source* package ‘tinytex’ ...
## 
[0m
[91m** package ‘tinytex’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (tinytex)
## 
[0m
[91m* installing *source* package ‘ellipsis’ ...
## 
[0m
[91m** package ‘ellipsis’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c dots.c -o dots.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o ellipsis.so dots.o init.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-ellipsis/00new/ellipsis/libs
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (ellipsis)
## 
[0m
[91m* installing *source* package ‘rcorpora’ ...
## 
[0m
[91m** package ‘rcorpora’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (rcorpora)
## 
[0m
[91m* installing *source* package ‘callr’ ...
## 
[0m
[91m** package ‘callr’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (callr)
## 
[0m
[91m* installing *source* package ‘desc’ ...
## 
[0m
[91m** package ‘desc’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (desc)
## 
[0m
[91m* installing *source* package ‘sessioninfo’ ...
## 
[0m
[91m** package ‘sessioninfo’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (sessioninfo)
## 
[0m
[91m* installing *source* package ‘xopen’ ...
## 
[0m
[91m** package ‘xopen’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (xopen)
## 
[0m
[91m* installing *source* package ‘knitr’ ...
## 
[0m
[91m** package ‘knitr’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** demo
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (knitr)
## 
[0m
[91m* installing *source* package ‘openssl’ ...
## 
[0m
[91m** package ‘openssl’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0mUsing PKG_CFLAGS=
## Using PKG_LIBS=-l:libssl.so.1.1 -l:libcrypto.so.1.1
## 
[91m** libs
## 
[0mrm -f aes.o base64.o bignum.o cert.o compatibility.o diffie.o envelope.o error.o hash.o info.o keygen.o keys.o onload.o openssh.o password.o pbkdf.o pem.o pkcs12.o pkcs7.o rand.o rsa.o signing.o ssl.o stream.o write.o x25519.o openssl.so bcrypt/libstatbcrypt.a bcrypt/bcrypt_pbkdf.o bcrypt/blowfish.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c aes.c -o aes.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c base64.c -o base64.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c bignum.c -o bignum.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c cert.c -o cert.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c compatibility.c -o compatibility.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c diffie.c -o diffie.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c envelope.c -o envelope.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c error.c -o error.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c hash.c -o hash.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c info.c -o info.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c keygen.c -o keygen.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c keys.c -o keys.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c onload.c -o onload.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c openssh.c -o openssh.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c password.c -o password.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c pbkdf.c -o pbkdf.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c pem.c -o pem.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c pkcs12.c -o pkcs12.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c pkcs7.c -o pkcs7.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c rand.c -o rand.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c rsa.c -o rsa.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c signing.c -o signing.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c ssl.c -o ssl.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c stream.c -o stream.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c write.c -o write.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c x25519.c -o x25519.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c bcrypt/bcrypt_pbkdf.c -o bcrypt/bcrypt_pbkdf.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c bcrypt/blowfish.c -o bcrypt/blowfish.o
## ar rcs bcrypt/libstatbcrypt.a bcrypt/bcrypt_pbkdf.o bcrypt/blowfish.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o openssl.so aes.o base64.o bignum.o cert.o compatibility.o diffie.o envelope.o error.o hash.o info.o keygen.o keys.o onload.o openssh.o password.o pbkdf.o pem.o pkcs12.o pkcs7.o rand.o rsa.o signing.o ssl.o stream.o write.o x25519.o -Lbcrypt -lstatbcrypt -l:libssl.so.1.1 -l:libcrypto.so.1.1 -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-openssl/00new/openssl/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (openssl)
## 
[0m
[91m* installing *source* package ‘pkgbuild’ ...
## 
[0m
[91m** package ‘pkgbuild’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (pkgbuild)
## 
[0m
[91m* installing *source* package ‘rmarkdown’ ...
## 
[0m
[91m** package ‘rmarkdown’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (rmarkdown)
## 
[0m
[91m* installing *source* package ‘pkgload’ ...
## 
[0m
[91m** package ‘pkgload’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG   -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c unlock.c -o unlock.o
## gcc -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o pkgload.so unlock.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-pkgload/00new/pkgload/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (pkgload)
## 
[0m
[91m* installing *source* package ‘rcmdcheck’ ...
## 
[0m
[91m** package ‘rcmdcheck’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** R
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m** building package indices
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (rcmdcheck)
## 
[0m
[91m* installing *source* package ‘testthat’ ...
## 
[0m
[91m** package ‘testthat’ successfully unpacked and MD5 sums checked
## 
[0m
[91m** using staged installation
## 
[0m
[91m** libs
## 
[0mgcc -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include -DCOMPILING_TESTTHAT  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
## gcc -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include -DCOMPILING_TESTTHAT  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c reassign.c -o reassign.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include -DCOMPILING_TESTTHAT  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c test-catch.cpp -o test-catch.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include -DCOMPILING_TESTTHAT  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c test-example.cpp -o test-example.o
## g++ -std=gnu++11 -I"/usr/local/lib/R/include" -DNDEBUG -I../inst/include -DCOMPILING_TESTTHAT  -I/usr/local/include  -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c test-runner.cpp -o test-runner.o
## g++ -std=gnu++11 -shared -L/usr/local/lib/R/lib -L/usr/local/lib -o testthat.so init.o reassign.o test-catch.o test-example.o test-runner.o -L/usr/local/lib/R/lib -lR
## 
[91minstalling to /usr/local/lib/R/site-library/00LOCK-testthat/00new/testthat/libs
## 
[0m
[91m** R
## 
[0m
[91m** inst
## 
[0m
[91m** byte-compile and prepare package for lazy loading
## 
[0m
[91m** help
## 
[0m
[91m*** installing help indices
## 
[0m
[91m*** copying figures
## 
[0m
[91m** building package indices
## 
[0m
[91m** installing vignettes
## 
[0m
[91m** testing if installed package can be loaded from temporary location
## 
[0m
[91m** checking absolute paths in shared objects and dynamic libraries
## 
[0m
[91m** testing if installed package can be loaded from final location
## 
[0m
[91m** testing if installed package keeps a record of temporary installation path
## 
[0m
[91m* DONE (testthat)
## 
[0m
[91m
## 
[0m
[91mThe downloaded source packages are in
##  ‘/tmp/downloaded_packages’
## 
[0mRemoving intermediate container 4fedb68c3d63
##  ---> 4793cd0a9742
## Step 4/6 : COPY tester.sh /usr/local/bin
##  ---> bd6cf5371b42
## Step 5/6 : RUN chmod +x /usr/local/bin/tester.sh
##  ---> Running in 773796bbe2b2
## Removing intermediate container 773796bbe2b2
##  ---> fa74f9d6360c
## Step 6/6 : ENTRYPOINT ["/usr/local/bin/tester.sh"]
##  ---> Running in 8b65a8103536
## Removing intermediate container 8b65a8103536
##  ---> f28c74a4b075
## Successfully built f28c74a4b075
## Successfully tagged richfitz/tester:latest

With this image we can then test packages off github:

invisible(docker$container$run(img, "https://github.com/richfitz/ids",
                               rm = TRUE, stream = stdout()))
## E> Cloning into '/tmp/tmp.7eoWpFjoX1'...
## O> * checking for file ‘/tmp/tmp.7eoWpFjoX1/DESCRIPTION’ ... OK
## O> * preparing ‘ids’:
## O> * checking DESCRIPTION meta-information ... OK
## O> * installing the package to build vignettes
## O> * creating vignettes ... OK
## O> * checking for LF line-endings in source and make files and shell scripts
## O> * checking for empty or unneeded directories
## O> * looking to see if a ‘data/datalist’ file should be added
## O> * building ‘ids_1.1.0.tar.gz’
## E>
## O> ── R CMD check ─────────────────────────────────────────────────────────────────
## O> * using log directory ‘/tmp/Rtmph66C1d/file6a36150827/ids.Rcheck’
## O> * using R version 3.6.2 (2019-12-12)
## O> * using platform: x86_64-pc-linux-gnu (64-bit)
## O> * using session charset: UTF-8
## O> * using options ‘--no-manual --as-cran’
## O> * checking for file ‘ids/DESCRIPTION’ ... OK
## O> * this is package ‘ids’ version ‘1.1.0’
## O> * package encoding: UTF-8
## O> * checking package namespace information ... OK
## O> * checking package dependencies ... OK
## O> * checking if this is a source package ... OK
## O> * checking if there is a namespace ... OK
## O> * checking for executable files ... OK
## O> * checking for hidden files and directories ... OK
## O> * checking for portable file names ... OK
## O> * checking for sufficient/correct file permissions ... OK
## O> * checking serialization versions ... OK
## O> * checking whether package ‘ids’ can be installed ... OK
## O> * checking installed package size ... OK
## O> * checking package directory ... OK
## O> * checking for future file timestamps ... OK
## O> * checking ‘build’ directory ... OK
## O> * checking DESCRIPTION meta-information ... OK
## O> * checking top-level files ... OK
## O> * checking for left-over files ... OK
## O> * checking index information ... OK
## O> * checking package subdirectories ... OK
## O> * checking R files for non-ASCII characters ... OK
## O> * checking R files for syntax errors ... OK
## O> * checking whether the package can be loaded ... OK
## O> * checking whether the package can be loaded with stated dependencies ... OK
## O> * checking whether the package can be unloaded cleanly ... OK
## O> * checking whether the namespace can be loaded with stated dependencies ... OK
## O> * checking whether the namespace can be unloaded cleanly ... OK
## O> * checking loading without being on the library search path ... OK
## O> * checking dependencies in R code ... OK
## O> * checking S3 generic/method consistency ... OK
## O> * checking replacement functions ... OK
## O> * checking foreign function calls ... OK
## O> * checking R code for possible problems ... OK
## O> * checking Rd files ... OK
## O> * checking Rd metadata ... OK
## O> * checking Rd line widths ... OK
## O> * checking Rd cross-references ... OK
## O> * checking for missing documentation entries ... OK
## O> * checking for code/documentation mismatches ... OK
## O> * checking Rd \usage sections ... OK
## O> * checking Rd contents ... OK
## O> * checking for unstated dependencies in examples ... OK
## O> * checking R/sysdata.rda ... OK
## O> * checking installed files from ‘inst/doc’ ... OK
## O> * checking files in ‘vignettes’ ... OK
## O> * checking examples ... OK
## O> * checking for unstated dependencies in ‘tests’ ... OK
## O> * checking tests ...
## O>   Running ‘testthat.R’
## O>  OK
## O> * checking for unstated dependencies in vignettes ... OK
## O> * checking package vignettes in ‘inst/doc’ ... OK
## O> * checking re-building of vignette outputs ... OK
## O> * checking for detritus in the temp directory ... OK
## O> * DONE
## O>
## O> Status: OK
## O>
## O> ── R CMD check results ────────────────────────────────────────── ids 1.1.0 ────
## O> Duration: 15.7s
## O>
## O> 0 errors ✔ | 0 warnings ✔ | 0 notes ✔

(I have cheated here and put all of the dependencies of ids into the docker image via the Dockerfile).

The same approach would work by mounting the package source directory into the container and passing the path (within the container) to $run().