gagolews / stringi

Fast and portable character string processing in R (with the Unicode ICU)
https://stringi.gagolewski.com/
Other
304 stars 45 forks source link

./configure icudt check - more strict tests needed #140

Closed nachti closed 9 years ago

nachti commented 9 years ago

Hi Marek!

I cloned strigi from github and tried to build (ok) and check it. Using the command line R CMD check fails with this output:

...
Undocumented arguments in documentation object 'stri_datetime_format'
  ‘x’ ‘...’

Functions with \usage entries need to have the appropriate \alias
entries, and all their arguments documented.
The \usage entries must correspond to syntactically valid R code.
See the chapter ‘Writing R documentation files’ in the ‘Writing R
Extensions’ manual.
* checking Rd contents ... OK
* checking for unstated dependencies in examples ... OK
* checking line endings in C/C++/Fortran sources/headers ... OK
* checking line endings in Makefiles ... OK
* checking compilation flags in Makevars ... OK
* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
* checking compiled code ... OK
* checking examples ... ERROR
Running examples in ‘stringi-Ex.R’ failed
The error most likely occurred in:

> ### Name: %s<%
> ### Title: Compare Strings with or without Collation
> ### Aliases: %s!==% %s!=% %s<=% %s<% %s===% %s==% %s>=% %s>% %stri!==%
> ###   %stri!=% %stri<=% %stri<% %stri===% %stri==% %stri>=% %stri>%
>
> ### ** Examples
>
> "a" %stri<% "b"
Error in stri_cmp_lt(e1, e2) :
  The requested ICU resource file cannot be found. Possible problem: ICU data has not been downloaded yet. Call `stri_install_check()`. (U_FILE_ACCESS_ERROR)
Calls: %stri<% -> stri_cmp_lt -> .Call
Execution halted

Loading the installed version stri_install_check() gives no error:

> stri_install_check()
stringi_0.4.1; en_US.UTF-8; ICU4C 52.1; Unicode 6.3
All tests completed successfully.
> sessionInfo()
R version 3.1.1 (2014-07-10)
Platform: x86_64-suse-linux-gnu (64-bit)

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C
 [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8
 [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8
 [7] LC_PAPER=en_US.UTF-8       LC_NAME=C
 [9] LC_ADDRESS=C               LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base

other attached packages:
[1] stringi_0.4-1

loaded via a namespace (and not attached):
[1] tools_3.1.1

Gerhard

gagolews commented 9 years ago

Sorry for late response, @nachti - I pushed a patch. Does it work now?

nachti commented 9 years ago

Hi Marek!

Thanks for your work. Unfortunately it's still not working. Here the relevant output from R CMD build stringi_0.5-1.tar.gz:

* checking Rd \usage sections ... WARNING
Undocumented arguments in documentation object 'stri_datetime_format'
  ‘x’ ‘...’

Functions with \usage entries need to have the appropriate \alias
entries, and all their arguments documented.
The \usage entries must correspond to syntactically valid R code.
See the chapter ‘Writing R documentation files’ in the ‘Writing R
Extensions’ manual.
* checking Rd contents ... OK
* checking for unstated dependencies in examples ... OK
* checking line endings in C/C++/Fortran sources/headers ... OK
* checking line endings in Makefiles ... OK
* checking compilation flags in Makevars ... OK
* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
* checking compiled code ... OK
* checking examples ... ERROR
Running examples in ‘stringi-Ex.R’ failed
The error most likely occurred in:

> ### Name: %s<%
> ### Title: Compare Strings with or without Collation
> ### Aliases: %s!==% %s!=% %s<=% %s<% %s===% %s==% %s>=% %s>% %stri!==%
> ###   %stri!=% %stri<=% %stri<% %stri===% %stri==% %stri>=% %stri>%
>
> ### ** Examples
>
> "a" %stri<% "b"
Error in stri_cmp_lt(e1, e2) :
  The requested ICU resource file cannot be found. Possible problem: ICU data has not been downloaded yet. Call `stri_install_check()`. (U_FILE_ACCESS_ERROR)
Calls: %stri<% -> stri_cmp_lt -> .Call
Execution halted

Gerhard

gagolews commented 9 years ago

@nachti

Could you please send me the whole output generated while building the package (./configure, compilation, etc.)?

nachti commented 9 years ago

The build is unsuspicious. Just the check fails.

nachti@server:~/git> R CMD build stringi
* checking for file ‘stringi/DESCRIPTION’ ... OK
* preparing ‘stringi’:
* checking DESCRIPTION meta-information ... OK
* cleaning src
* running ‘cleanup’
* checking for LF line-endings in source and make files
* checking for empty or unneeded directories
* building ‘stringi_0.5-1.tar.gz’

nachti@server:~/git> R CMD check stringi_0.5-1.tar.gz
* using log directory ‘/home/nachti/git/stringi.Rcheck’
* using R version 3.1.1 (2014-07-10)
* using platform: x86_64-suse-linux-gnu (64-bit)
* using session charset: UTF-8
* checking for file ‘stringi/DESCRIPTION’ ... OK
* checking extension type ... Package
* this is package ‘stringi’ version ‘0.5-1’
* checking package namespace information ... OK
* checking package dependencies ... OK
* checking if this is a source package ... OK
* checking if there is a namespace ... OK
* checking for executable files ... OK
* checking for hidden files and directories ... OK
* checking for portable file names ... OK
* checking for sufficient/correct file permissions ... OK
* checking whether package ‘stringi’ can be installed ... OK
* checking installed package size ... OK
* checking package directory ... OK
* checking DESCRIPTION meta-information ... OK
* checking top-level files ... OK
* checking for left-over files ... OK
* checking index information ... OK
* checking package subdirectories ... OK
* checking R files for non-ASCII characters ... OK
* checking R files for syntax errors ... OK
* checking whether the package can be loaded ... OK
* checking whether the package can be loaded with stated dependencies ... OK
* checking whether the package can be unloaded cleanly ... OK
* checking whether the namespace can be loaded with stated dependencies ... OK
* checking whether the namespace can be unloaded cleanly ... OK
* checking loading without being on the library search path ... OK
* checking dependencies in R code ... OK
* checking S3 generic/method consistency ... OK
* checking replacement functions ... OK
* checking foreign function calls ... OK
* checking R code for possible problems ... OK
* checking Rd files ... OK
* checking Rd metadata ... OK
* checking Rd cross-references ... OK
* checking for missing documentation entries ... OK
* checking for code/documentation mismatches ... OK
* checking Rd \usage sections ... WARNING
Undocumented arguments in documentation object 'stri_datetime_format'
  ‘x’ ‘...’

Functions with \usage entries need to have the appropriate \alias
entries, and all their arguments documented.
The \usage entries must correspond to syntactically valid R code.
See the chapter ‘Writing R documentation files’ in the ‘Writing R
Extensions’ manual.
* checking Rd contents ... OK
* checking for unstated dependencies in examples ... OK
* checking line endings in C/C++/Fortran sources/headers ... OK
* checking line endings in Makefiles ... OK
* checking compilation flags in Makevars ... OK
* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
* checking compiled code ... OK
* checking examples ... ERROR
Running examples in ‘stringi-Ex.R’ failed
The error most likely occurred in:

> ### Name: %s<%
> ### Title: Compare Strings with or without Collation
> ### Aliases: %s!==% %s!=% %s<=% %s<% %s===% %s==% %s>=% %s>% %stri!==%
> ###   %stri!=% %stri<=% %stri<% %stri===% %stri==% %stri>=% %stri>%
>
> ### ** Examples
>
> "a" %stri<% "b"
Error in stri_cmp_lt(e1, e2) :
  The requested ICU resource file cannot be found. Possible problem: ICU data has not been downloaded yet. Call `stri_install_check()`. (U_FILE_ACCESS_ERROR)
Calls: %stri<% -> stri_cmp_lt -> .Call
Execution halted
gagolews commented 9 years ago

I meant the output of R CMD INSTALL... :)

nachti commented 9 years ago
 R CMD INSTALL -l stinst/ stringi_0.5-1.tar.gz
* installing *source* package ‘stringi’ ...
configure: loading site script /usr/share/site/x86_64-unknown-linux-gnu
checking for local ICUDT_DIR... icu52/data
checking for R_HOME... /usr/lib64/R
checking for R... /usr/lib64/R/bin/R
checking for gcc... gcc -std=gnu99
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc -std=gnu99 accepts -g... yes
checking for gcc -std=gnu99 option to accept ISO C89... none needed
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for cat... /usr/bin/cat
checking for pkg-config... /usr/bin/pkg-config
checking with pkg-config for ICU4C installed... 51.2
checking for ICU4C >= 50... yes
checking for proper CPPFLAGS, LDFLAGS, and LIBS... done
checking whether we may build an ICU-based project... yes
checking for available ICU data library (ucnv, uloc, utrans)... yes
checking for available ICU data library (ucol)... yes
checking how to run the C++ preprocessor... g++ -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/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
configure: creating ./config.status
config.status: creating src/Makevars
config.status: creating src/icu52_found.txt
config.status: creating src/install.libs.R
** libs
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_brkiter.cpp -o stri_brkiter.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_collator.cpp -o stri_collator.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_common.cpp -o stri_common.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_compare.cpp -o stri_compare.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_base.cpp -o stri_container_base.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_bytesearch.cpp -o stri_container_bytesearch.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_listint.cpp -o stri_container_listint.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_listraw.cpp -o stri_container_listraw.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_listutf8.cpp -o stri_container_listutf8.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_regex.cpp -o stri_container_regex.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_usearch.cpp -o stri_container_usearch.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_utf16.cpp -o stri_container_utf16.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_utf8.cpp -o stri_container_utf8.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_container_utf8_indexable.cpp -o stri_container_utf8_indexable.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_encoding_conversion.cpp -o stri_encoding_conversion.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_encoding_detection.cpp -o stri_encoding_detection.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_encoding_management.cpp -o stri_encoding_management.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_escape.cpp -o stri_escape.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_exception.cpp -o stri_exception.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_ICU_settings.cpp -o stri_ICU_settings.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_join.cpp -o stri_join.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_length.cpp -o stri_length.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_pad.cpp -o stri_pad.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_prepare_arg.cpp -o stri_prepare_arg.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_random.cpp -o stri_random.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_reverse.cpp -o stri_reverse.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_count.cpp -o stri_search_class_count.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_detect.cpp -o stri_search_class_detect.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_extract.cpp -o stri_search_class_extract.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_locate.cpp -o stri_search_class_locate.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_replace.cpp -o stri_search_class_replace.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_split.cpp -o stri_search_class_split.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_startsendswith.cpp -o stri_search_class_startsendswith.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_subset.cpp -o stri_search_class_subset.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_class_trim.cpp -o stri_search_class_trim.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_common.cpp -o stri_search_common.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_coll_count.cpp -o stri_search_coll_count.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_coll_detect.cpp -o stri_search_coll_detect.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_coll_extract.cpp -o stri_search_coll_extract.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_coll_locate.cpp -o stri_search_coll_locate.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_coll_replace.cpp -o stri_search_coll_replace.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_coll_split.cpp -o stri_search_coll_split.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_coll_startsendswith.cpp -o stri_search_coll_startsendswith.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_coll_subset.cpp -o stri_search_coll_subset.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_boundaries_count.cpp -o stri_search_boundaries_count.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_boundaries_extract.cpp -o stri_search_boundaries_extract.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_boundaries_locate.cpp -o stri_search_boundaries_locate.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_boundaries_split.cpp -o stri_search_boundaries_split.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_fixed_count.cpp -o stri_search_fixed_count.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_fixed_detect.cpp -o stri_search_fixed_detect.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_fixed_extract.cpp -o stri_search_fixed_extract.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_fixed_locate.cpp -o stri_search_fixed_locate.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_fixed_replace.cpp -o stri_search_fixed_replace.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_fixed_split.cpp -o stri_search_fixed_split.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_fixed_subset.cpp -o stri_search_fixed_subset.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_fixed_startsendswith.cpp -o stri_search_fixed_startsendswith.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_in.cpp -o stri_search_in.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_other_replace.cpp -o stri_search_other_replace.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_other_split.cpp -o stri_search_other_split.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_regex_count.cpp -o stri_search_regex_count.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_regex_detect.cpp -o stri_search_regex_detect.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_regex_extract.cpp -o stri_search_regex_extract.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_regex_locate.cpp -o stri_search_regex_locate.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_regex_match.cpp -o stri_search_regex_match.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_regex_replace.cpp -o stri_search_regex_replace.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_regex_split.cpp -o stri_search_regex_split.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_search_regex_subset.cpp -o stri_search_regex_subset.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_stats.cpp -o stri_stats.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_stringi.cpp -o stri_stringi.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_sub.cpp -o stri_sub.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_test.cpp -o stri_test.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_time_zone.cpp -o stri_time_zone.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_time_calendar.cpp -o stri_time_calendar.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_time_symbols.cpp -o stri_time_symbols.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_time_format.cpp -o stri_time_format.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_trans_casemap.cpp -o stri_trans_casemap.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_trans_normalization.cpp -o stri_trans_normalization.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_trans_transliterate.cpp -o stri_trans_transliterate.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_ucnv.cpp -o stri_ucnv.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_uloc.cpp -o stri_uloc.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_utils.cpp -o stri_utils.o
g++ -I/usr/lib64/R/include -DNDEBUG -DNDEBUG -I.   -I/usr/local/include   -UDEBUG -DNDEBUG  -DU_HAVE_ELF_H -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c stri_wrap.cpp -o stri_wrap.o
g++ -shared -L/usr/local/lib64 -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_replace.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_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_normalization.o stri_trans_transliterate.o stri_ucnv.o stri_uloc.o stri_utils.o stri_wrap.o -L/usr/lib64 -licui18n -licuuc -licudata -L/usr/lib64/R/lib -lR
installing via 'install.libs.R' to /home/nachti/git/stinst/stringi
** R
** inst
** preparing package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
* DONE (stringi)
gagolews commented 9 years ago

This is now fixed, see also #164, #165. @nachti, could you confirm?

nachti commented 9 years ago

Yes I can confirm it. Thanks Marek! Below you can find the output.

Build:

R CMD build stringi/
* checking for file ‘stringi/DESCRIPTION’ ... OK
* preparing ‘stringi’:
* checking DESCRIPTION meta-information ... OK
* cleaning src
* running ‘cleanup’
* checking for LF line-endings in source and make files
* checking for empty or unneeded directories
* building ‘stringi_0.5-2.tar.gz’

Check:

R CMD check stringi_0.5-2.tar.gz
* using log directory ‘/data/home/nachtmann/git/stringi.Rcheck’
* using R version 3.2.0 (2015-04-16)
* using platform: x86_64-suse-linux-gnu (64-bit)
* using session charset: UTF-8
* checking for file ‘stringi/DESCRIPTION’ ... OK
* checking extension type ... Package
* this is package ‘stringi’ version ‘0.5-2’
* checking package namespace information ... OK
* checking package dependencies ... OK
* checking if this is a source package ... OK
* checking if there is a namespace ... OK
* checking for executable files ... OK
* checking for hidden files and directories ... OK
* checking for portable file names ... OK
* checking for sufficient/correct file permissions ... OK
* checking whether package ‘stringi’ can be installed ... OK
* checking installed package size ... NOTE
  installed size is 31.0Mb
  sub-directories of 1Mb or more:
    libs  30.4Mb
* checking package directory ... OK
* checking DESCRIPTION meta-information ... OK
* checking top-level files ... OK
* checking for left-over files ... OK
* checking index information ... OK
* checking package subdirectories ... OK
* checking R files for non-ASCII characters ... OK
* checking R files for syntax errors ... OK
* checking whether the package can be loaded ... OK
* checking whether the package can be loaded with stated dependencies ... OK
* checking whether the package can be unloaded cleanly ... OK
* checking whether the namespace can be loaded with stated dependencies ... OK
* checking whether the namespace can be unloaded cleanly ... OK
* checking dependencies in R code ... OK
* checking S3 generic/method consistency ... OK
* checking replacement functions ... OK
* checking foreign function calls ... OK
* checking R code for possible problems ... OK
* checking Rd files ... OK
* checking Rd metadata ... OK
* checking Rd cross-references ... OK
* checking for missing documentation entries ... OK
* checking for code/documentation mismatches ... OK
* checking Rd \usage sections ... OK
* checking Rd contents ... OK
* checking for unstated dependencies in examples ... OK
* checking line endings in C/C++/Fortran sources/headers ... OK
* checking line endings in Makefiles ... OK
* checking compilation flags in Makevars ... OK
* checking for GNU extensions in Makefiles ... OK
* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
* checking compiled code ... OK
* checking examples ... OK
* checking PDF version of manual ... OK
* DONE

Status: 1 NOTE
See
  ‘/data/home/nachtmann/git/stringi.Rcheck/00check.log’
for details.

Install:

R CMD INSTALL -l stinst/ stringi_0.5-2.tar.gz
* installing *source* package ‘stringi’ ...
configure: loading site script /usr/share/site/x86_64-unknown-linux-gnu
checking for local ICUDT_DIR... icu55/data
checking for R_HOME... /usr/lib64/R
checking for R... /usr/lib64/R/bin/R
checking for R >= 3.1.0... yes
checking for cat... /usr/bin/cat
checking for gcc... gcc -std=gnu99
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc -std=gnu99 accepts -g... yes
checking for gcc -std=gnu99 option to accept ISO C89... none needed
checking whether we are using the GNU C++ compiler... yes
checking whether g++ -std=c++11 accepts -g... yes
checking how to run the C++ preprocessor... g++ -std=c++11 -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/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 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... /usr/bin/pkg-config
checking with pkg-config for ICU4C installed... 51.2
checking for ICU4C >= 52... no
*** ICU4C 51.2 has been detected
*** Minimal requirements, i.e. ICU4C >= 52, are not met
*** We will build ICU4C from sources
configure: creating ./config.status
config.status: creating src/Makevars
config.status: creating src/icu55_found.txt
config.status: creating src/install.libs.R

*** stringi configure summary:
    ICU_FOUND=0
    ICUDT_DIR=icu55/data
    STRINGI_CXXSTD=CXX_STD=CXX11
    STRINGI_CFLAGS=
    STRINGI_CPPFLAGS=-I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H
    STRINGI_CXXFLAGS=
    STRINGI_LDFLAGS=
    STRINGI_LIBS=

*** compiler settings used:
    CC=gcc -std=gnu99
    CPP=g++ -E
    LD=g++
    CFLAGS=-fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables
    CPPFLAGS=-I/usr/local/include  -UDEBUG -DNDEBUG
    CXX=g++ -std=c++11
    CXXFLAGS=-fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables
    LDFLAGS=
    LIBS=

** libs
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_brkiter.cpp -o stri_brkiter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_collator.cpp -o stri_collator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_common.cpp -o stri_common.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_compare.cpp -o stri_compare.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_base.cpp -o stri_container_base.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_bytesearch.cpp -o stri_container_bytesearch.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_listint.cpp -o stri_container_listint.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_listraw.cpp -o stri_container_listraw.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_listutf8.cpp -o stri_container_listutf8.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_regex.cpp -o stri_container_regex.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_usearch.cpp -o stri_container_usearch.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_utf16.cpp -o stri_container_utf16.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_utf8.cpp -o stri_container_utf8.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_container_utf8_indexable.cpp -o stri_container_utf8_indexable.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_encoding_conversion.cpp -o stri_encoding_conversion.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_encoding_detection.cpp -o stri_encoding_detection.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_encoding_management.cpp -o stri_encoding_management.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_escape.cpp -o stri_escape.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_exception.cpp -o stri_exception.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_ICU_settings.cpp -o stri_ICU_settings.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_join.cpp -o stri_join.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_length.cpp -o stri_length.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_pad.cpp -o stri_pad.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_prepare_arg.cpp -o stri_prepare_arg.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_random.cpp -o stri_random.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_reverse.cpp -o stri_reverse.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_count.cpp -o stri_search_class_count.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_detect.cpp -o stri_search_class_detect.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_extract.cpp -o stri_search_class_extract.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_locate.cpp -o stri_search_class_locate.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_replace.cpp -o stri_search_class_replace.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_split.cpp -o stri_search_class_split.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_startsendswith.cpp -o stri_search_class_startsendswith.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_subset.cpp -o stri_search_class_subset.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_class_trim.cpp -o stri_search_class_trim.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_common.cpp -o stri_search_common.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_coll_count.cpp -o stri_search_coll_count.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_coll_detect.cpp -o stri_search_coll_detect.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_coll_extract.cpp -o stri_search_coll_extract.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_coll_locate.cpp -o stri_search_coll_locate.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_coll_replace.cpp -o stri_search_coll_replace.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_coll_split.cpp -o stri_search_coll_split.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_coll_startsendswith.cpp -o stri_search_coll_startsendswith.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_coll_subset.cpp -o stri_search_coll_subset.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_boundaries_count.cpp -o stri_search_boundaries_count.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_boundaries_extract.cpp -o stri_search_boundaries_extract.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_boundaries_locate.cpp -o stri_search_boundaries_locate.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_boundaries_split.cpp -o stri_search_boundaries_split.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_fixed_count.cpp -o stri_search_fixed_count.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_fixed_detect.cpp -o stri_search_fixed_detect.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_fixed_extract.cpp -o stri_search_fixed_extract.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_fixed_locate.cpp -o stri_search_fixed_locate.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_fixed_replace.cpp -o stri_search_fixed_replace.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_fixed_split.cpp -o stri_search_fixed_split.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_fixed_subset.cpp -o stri_search_fixed_subset.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_fixed_startsendswith.cpp -o stri_search_fixed_startsendswith.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_in.cpp -o stri_search_in.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_other_replace.cpp -o stri_search_other_replace.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_other_split.cpp -o stri_search_other_split.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_regex_count.cpp -o stri_search_regex_count.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_regex_detect.cpp -o stri_search_regex_detect.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_regex_extract.cpp -o stri_search_regex_extract.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_regex_locate.cpp -o stri_search_regex_locate.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_regex_match.cpp -o stri_search_regex_match.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_regex_replace.cpp -o stri_search_regex_replace.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_regex_split.cpp -o stri_search_regex_split.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_search_regex_subset.cpp -o stri_search_regex_subset.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_stats.cpp -o stri_stats.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_stringi.cpp -o stri_stringi.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_sub.cpp -o stri_sub.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_test.cpp -o stri_test.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_time_zone.cpp -o stri_time_zone.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_time_calendar.cpp -o stri_time_calendar.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_time_symbols.cpp -o stri_time_symbols.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_time_format.cpp -o stri_time_format.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_trans_casemap.cpp -o stri_trans_casemap.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_trans_other.cpp -o stri_trans_other.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_trans_normalization.cpp -o stri_trans_normalization.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_trans_transliterate.cpp -o stri_trans_transliterate.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_ucnv.cpp -o stri_ucnv.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_uloc.cpp -o stri_uloc.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_utils.cpp -o stri_utils.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c stri_wrap.cpp -o stri_wrap.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/appendable.cpp -o icu55/common/appendable.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/bmpset.cpp -o icu55/common/bmpset.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/brkeng.cpp -o icu55/common/brkeng.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/brkiter.cpp -o icu55/common/brkiter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/bytestream.cpp -o icu55/common/bytestream.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/bytestriebuilder.cpp -o icu55/common/bytestriebuilder.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/bytestrie.cpp -o icu55/common/bytestrie.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/bytestrieiterator.cpp -o icu55/common/bytestrieiterator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/caniter.cpp -o icu55/common/caniter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/chariter.cpp -o icu55/common/chariter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/charstr.cpp -o icu55/common/charstr.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/dictbe.cpp -o icu55/common/dictbe.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/dictionarydata.cpp -o icu55/common/dictionarydata.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/dtintrv.cpp -o icu55/common/dtintrv.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/errorcode.cpp -o icu55/common/errorcode.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/filterednormalizer2.cpp -o icu55/common/filterednormalizer2.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/icuplug.cpp -o icu55/common/icuplug.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/listformatter.cpp -o icu55/common/listformatter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/loadednormalizer2impl.cpp -o icu55/common/loadednormalizer2impl.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/locavailable.cpp -o icu55/common/locavailable.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/locbased.cpp -o icu55/common/locbased.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/locdispnames.cpp -o icu55/common/locdispnames.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/locid.cpp -o icu55/common/locid.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/loclikely.cpp -o icu55/common/loclikely.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/locresdata.cpp -o icu55/common/locresdata.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/locutil.cpp -o icu55/common/locutil.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/messagepattern.cpp -o icu55/common/messagepattern.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/normalizer2.cpp -o icu55/common/normalizer2.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/normalizer2impl.cpp -o icu55/common/normalizer2impl.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/normlzr.cpp -o icu55/common/normlzr.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/parsepos.cpp -o icu55/common/parsepos.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/patternprops.cpp -o icu55/common/patternprops.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/propname.cpp -o icu55/common/propname.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/punycode.cpp -o icu55/common/punycode.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/putil.cpp -o icu55/common/putil.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/rbbi.cpp -o icu55/common/rbbi.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/rbbidata.cpp -o icu55/common/rbbidata.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/rbbinode.cpp -o icu55/common/rbbinode.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/rbbirb.cpp -o icu55/common/rbbirb.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/rbbiscan.cpp -o icu55/common/rbbiscan.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/rbbisetb.cpp -o icu55/common/rbbisetb.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/rbbistbl.cpp -o icu55/common/rbbistbl.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/rbbitblb.cpp -o icu55/common/rbbitblb.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/resbund_cnv.cpp -o icu55/common/resbund_cnv.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/resbund.cpp -o icu55/common/resbund.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ruleiter.cpp -o icu55/common/ruleiter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/schriter.cpp -o icu55/common/schriter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/serv.cpp -o icu55/common/serv.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/servlk.cpp -o icu55/common/servlk.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/servlkf.cpp -o icu55/common/servlkf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/servls.cpp -o icu55/common/servls.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/servnotf.cpp -o icu55/common/servnotf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/servrbf.cpp -o icu55/common/servrbf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/servslkf.cpp -o icu55/common/servslkf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/sharedobject.cpp -o icu55/common/sharedobject.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/simplepatternformatter.cpp -o icu55/common/simplepatternformatter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/stringpiece.cpp -o icu55/common/stringpiece.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/stringtriebuilder.cpp -o icu55/common/stringtriebuilder.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ubrk.cpp -o icu55/common/ubrk.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucase.cpp -o icu55/common/ucase.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucasemap.cpp -o icu55/common/ucasemap.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucasemap_titlecase_brkiter.cpp -o icu55/common/ucasemap_titlecase_brkiter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucharstriebuilder.cpp -o icu55/common/ucharstriebuilder.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucharstrie.cpp -o icu55/common/ucharstrie.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucharstrieiterator.cpp -o icu55/common/ucharstrieiterator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uchriter.cpp -o icu55/common/uchriter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucln_cmn.cpp -o icu55/common/ucln_cmn.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucnv2022.cpp -o icu55/common/ucnv2022.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucnv_bld.cpp -o icu55/common/ucnv_bld.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucnvbocu.cpp -o icu55/common/ucnvbocu.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucnv_ext.cpp -o icu55/common/ucnv_ext.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucnv_io.cpp -o icu55/common/ucnv_io.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucnvmbcs.cpp -o icu55/common/ucnvmbcs.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucnvsel.cpp -o icu55/common/ucnvsel.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ucol_swp.cpp -o icu55/common/ucol_swp.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/udata.cpp -o icu55/common/udata.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uhash_us.cpp -o icu55/common/uhash_us.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uidna.cpp -o icu55/common/uidna.o
In file included from icu55/unicode/platform.h:23:0,
                 from icu55/unicode/ptypes.h:50,
                 from icu55/unicode/umachine.h:44,
                 from icu55/unicode/utypes.h:36,
                 from icu55/common/uidna.cpp:17:
icu55/common/uidna.cpp: In function ‘int32_t _internal_toUnicode(const UChar*, int32_t, UChar*, int32_t, int32_t, UStringPrepProfile*, UParseError*, UErrorCode*)’:
icu55/unicode/urename.h:979:48: warning: ‘int32_t uidna_toASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/unicode/uidna.h:574) [-Wdeprecated-declarations]
 #define uidna_toASCII U_ICU_ENTRY_POINT_RENAME(uidna_toASCII)
                                                ^
icu55/unicode/uvernum.h:110:43: note: in definition of macro ‘U_DEF_ICU_ENTRY_POINT_RENAME’
 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
                                           ^
icu55/unicode/uvernum.h:112:40: note: in expansion of macro ‘U_DEF2_ICU_ENTRY_POINT_RENAME’
 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
                                        ^
icu55/unicode/urename.h:979:23: note: in expansion of macro ‘U_ICU_ENTRY_POINT_RENAME’
 #define uidna_toASCII U_ICU_ENTRY_POINT_RENAME(uidna_toASCII)
                       ^
icu55/common/uidna.cpp:513:17: note: in expansion of macro ‘uidna_toASCII’
         b3Len = uidna_toASCII(b2, b2Len, b3, b3Capacity, options, parseError, status);
                 ^
icu55/common/uidna.cpp:513:85: warning: ‘int32_t uidna_toASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/unicode/uidna.h:574) [-Wdeprecated-declarations]
         b3Len = uidna_toASCII(b2, b2Len, b3, b3Capacity, options, parseError, status);
                                                                                     ^
In file included from icu55/unicode/platform.h:23:0,
                 from icu55/unicode/ptypes.h:50,
                 from icu55/unicode/umachine.h:44,
                 from icu55/unicode/utypes.h:36,
                 from icu55/common/uidna.cpp:17:
icu55/unicode/urename.h:979:48: warning: ‘int32_t uidna_toASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/unicode/uidna.h:574) [-Wdeprecated-declarations]
 #define uidna_toASCII U_ICU_ENTRY_POINT_RENAME(uidna_toASCII)
                                                ^
icu55/unicode/uvernum.h:110:43: note: in definition of macro ‘U_DEF_ICU_ENTRY_POINT_RENAME’
 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
                                           ^
icu55/unicode/uvernum.h:112:40: note: in expansion of macro ‘U_DEF2_ICU_ENTRY_POINT_RENAME’
 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
                                        ^
icu55/unicode/urename.h:979:23: note: in expansion of macro ‘U_ICU_ENTRY_POINT_RENAME’
 #define uidna_toASCII U_ICU_ENTRY_POINT_RENAME(uidna_toASCII)
                       ^
icu55/common/uidna.cpp:526:22: note: in expansion of macro ‘uidna_toASCII’
             b3Len =  uidna_toASCII(b2,b2Len,b3,b3Len,options,parseError, status);
                      ^
icu55/common/uidna.cpp:526:80: warning: ‘int32_t uidna_toASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/unicode/uidna.h:574) [-Wdeprecated-declarations]
             b3Len =  uidna_toASCII(b2,b2Len,b3,b3Len,options,parseError, status);
                                                                                ^
In file included from icu55/unicode/platform.h:23:0,
                 from icu55/unicode/ptypes.h:50,
                 from icu55/unicode/umachine.h:44,
                 from icu55/unicode/utypes.h:36,
                 from icu55/common/uidna.cpp:17:
icu55/common/uidna.cpp: In function ‘int32_t uidna_compare_55(const UChar*, int32_t, const UChar*, int32_t, int32_t, UErrorCode*)’:
icu55/unicode/urename.h:966:51: warning: ‘int32_t uidna_IDNToASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/common/uidna.cpp:668) [-Wdeprecated-declarations]
 #define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
                                                   ^
icu55/unicode/uvernum.h:110:43: note: in definition of macro ‘U_DEF_ICU_ENTRY_POINT_RENAME’
 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
                                           ^
icu55/unicode/uvernum.h:112:40: note: in expansion of macro ‘U_DEF2_ICU_ENTRY_POINT_RENAME’
 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
                                        ^
icu55/unicode/urename.h:966:26: note: in expansion of macro ‘U_ICU_ENTRY_POINT_RENAME’
 #define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
                          ^
icu55/common/uidna.cpp:876:13: note: in expansion of macro ‘uidna_IDNToASCII’
     b1Len = uidna_IDNToASCII(s1, length1, b1, b1Capacity, options, &parseError, status);
             ^
icu55/common/uidna.cpp:876:87: warning: ‘int32_t uidna_IDNToASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/common/uidna.cpp:668) [-Wdeprecated-declarations]
     b1Len = uidna_IDNToASCII(s1, length1, b1, b1Capacity, options, &parseError, status);
                                                                                       ^
In file included from icu55/unicode/platform.h:23:0,
                 from icu55/unicode/ptypes.h:50,
                 from icu55/unicode/umachine.h:44,
                 from icu55/unicode/utypes.h:36,
                 from icu55/common/uidna.cpp:17:
icu55/unicode/urename.h:966:51: warning: ‘int32_t uidna_IDNToASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/common/uidna.cpp:668) [-Wdeprecated-declarations]
 #define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
                                                   ^
icu55/unicode/uvernum.h:110:43: note: in definition of macro ‘U_DEF_ICU_ENTRY_POINT_RENAME’
 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
                                           ^
icu55/unicode/uvernum.h:112:40: note: in expansion of macro ‘U_DEF2_ICU_ENTRY_POINT_RENAME’
 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
                                        ^
icu55/unicode/urename.h:966:26: note: in expansion of macro ‘U_ICU_ENTRY_POINT_RENAME’
 #define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
                          ^
icu55/common/uidna.cpp:887:17: note: in expansion of macro ‘uidna_IDNToASCII’
         b1Len = uidna_IDNToASCII(s1,length1,b1,b1Len, options, &parseError, status);
                 ^
icu55/common/uidna.cpp:887:83: warning: ‘int32_t uidna_IDNToASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/common/uidna.cpp:668) [-Wdeprecated-declarations]
         b1Len = uidna_IDNToASCII(s1,length1,b1,b1Len, options, &parseError, status);
                                                                                   ^
In file included from icu55/unicode/platform.h:23:0,
                 from icu55/unicode/ptypes.h:50,
                 from icu55/unicode/umachine.h:44,
                 from icu55/unicode/utypes.h:36,
                 from icu55/common/uidna.cpp:17:
icu55/unicode/urename.h:966:51: warning: ‘int32_t uidna_IDNToASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/common/uidna.cpp:668) [-Wdeprecated-declarations]
 #define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
                                                   ^
icu55/unicode/uvernum.h:110:43: note: in definition of macro ‘U_DEF_ICU_ENTRY_POINT_RENAME’
 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
                                           ^
icu55/unicode/uvernum.h:112:40: note: in expansion of macro ‘U_DEF2_ICU_ENTRY_POINT_RENAME’
 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
                                        ^
icu55/unicode/urename.h:966:26: note: in expansion of macro ‘U_ICU_ENTRY_POINT_RENAME’
 #define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
                          ^
icu55/common/uidna.cpp:891:13: note: in expansion of macro ‘uidna_IDNToASCII’
     b2Len = uidna_IDNToASCII(s2,length2, b2,b2Capacity, options, &parseError, status);
             ^
icu55/common/uidna.cpp:891:85: warning: ‘int32_t uidna_IDNToASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/common/uidna.cpp:668) [-Wdeprecated-declarations]
     b2Len = uidna_IDNToASCII(s2,length2, b2,b2Capacity, options, &parseError, status);
                                                                                     ^
In file included from icu55/unicode/platform.h:23:0,
                 from icu55/unicode/ptypes.h:50,
                 from icu55/unicode/umachine.h:44,
                 from icu55/unicode/utypes.h:36,
                 from icu55/common/uidna.cpp:17:
icu55/unicode/urename.h:966:51: warning: ‘int32_t uidna_IDNToASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/common/uidna.cpp:668) [-Wdeprecated-declarations]
 #define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
                                                   ^
icu55/unicode/uvernum.h:110:43: note: in definition of macro ‘U_DEF_ICU_ENTRY_POINT_RENAME’
 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
                                           ^
icu55/unicode/uvernum.h:112:40: note: in expansion of macro ‘U_DEF2_ICU_ENTRY_POINT_RENAME’
 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
                                        ^
icu55/unicode/urename.h:966:26: note: in expansion of macro ‘U_ICU_ENTRY_POINT_RENAME’
 #define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
                          ^
icu55/common/uidna.cpp:902:17: note: in expansion of macro ‘uidna_IDNToASCII’
         b2Len = uidna_IDNToASCII(s2, length2, b2, b2Len, options, &parseError, status);
                 ^
icu55/common/uidna.cpp:902:86: warning: ‘int32_t uidna_IDNToASCII_55(const UChar*, int32_t, UChar*, int32_t, int32_t, UParseError*, UErrorCode*)’ is deprecated (declared at icu55/common/uidna.cpp:668) [-Wdeprecated-declarations]
         b2Len = uidna_IDNToASCII(s2, length2, b2, b2Len, options, &parseError, status);
                                                                                      ^
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uinit.cpp -o icu55/common/uinit.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uiter.cpp -o icu55/common/uiter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ulistformatter.cpp -o icu55/common/ulistformatter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uloc.cpp -o icu55/common/uloc.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uloc_keytype.cpp -o icu55/common/uloc_keytype.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/umutex.cpp -o icu55/common/umutex.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unames.cpp -o icu55/common/unames.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unifiedcache.cpp -o icu55/common/unifiedcache.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unifilt.cpp -o icu55/common/unifilt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unifunct.cpp -o icu55/common/unifunct.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uniset_closure.cpp -o icu55/common/uniset_closure.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uniset.cpp -o icu55/common/uniset.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uniset_props.cpp -o icu55/common/uniset_props.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unisetspan.cpp -o icu55/common/unisetspan.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unistr_case.cpp -o icu55/common/unistr_case.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unistr_case_locale.cpp -o icu55/common/unistr_case_locale.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unistr_cnv.cpp -o icu55/common/unistr_cnv.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unistr.cpp -o icu55/common/unistr.o
icu55/common/unistr.cpp:1798:13: warning: ‘void uprv_UnicodeStringDummy()’ defined but not used [-Wunused-function]
 static void uprv_UnicodeStringDummy(void) {
             ^
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unistr_props.cpp -o icu55/common/unistr_props.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unistr_titlecase_brkiter.cpp -o icu55/common/unistr_titlecase_brkiter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unormcmp.cpp -o icu55/common/unormcmp.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/unorm.cpp -o icu55/common/unorm.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uobject.cpp -o icu55/common/uobject.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uprops.cpp -o icu55/common/uprops.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uresbund.cpp -o icu55/common/uresbund.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uscript_props.cpp -o icu55/common/uscript_props.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uset.cpp -o icu55/common/uset.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/usetiter.cpp -o icu55/common/usetiter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uset_props.cpp -o icu55/common/uset_props.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ushape.cpp -o icu55/common/ushape.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/usprep.cpp -o icu55/common/usprep.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustack.cpp -o icu55/common/ustack.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustrcase.cpp -o icu55/common/ustrcase.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustrcase_locale.cpp -o icu55/common/ustrcase_locale.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustr_cnv.cpp -o icu55/common/ustr_cnv.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustrenum.cpp -o icu55/common/ustrenum.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustring.cpp -o icu55/common/ustring.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustr_titlecase_brkiter.cpp -o icu55/common/ustr_titlecase_brkiter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustrtrns.cpp -o icu55/common/ustrtrns.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/ustr_wcs.cpp -o icu55/common/ustr_wcs.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/utext.cpp -o icu55/common/utext.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/util.cpp -o icu55/common/util.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/util_props.cpp -o icu55/common/util_props.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/utrie2_builder.cpp -o icu55/common/utrie2_builder.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/utrie2.cpp -o icu55/common/utrie2.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/utrie.cpp -o icu55/common/utrie.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uts46.cpp -o icu55/common/uts46.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uvector.cpp -o icu55/common/uvector.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uvectr32.cpp -o icu55/common/uvectr32.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/common/uvectr64.cpp -o icu55/common/uvectr64.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/cmemory.c -o icu55/common/cmemory.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/cstring.c -o icu55/common/cstring.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/cwchar.c -o icu55/common/cwchar.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/icudataver.c -o icu55/common/icudataver.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/locmap.c -o icu55/common/locmap.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/propsvec.c -o icu55/common/propsvec.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/uarrsort.c -o icu55/common/uarrsort.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ubidi.c -o icu55/common/ubidi.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ubidiln.c -o icu55/common/ubidiln.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ubidi_props.c -o icu55/common/ubidi_props.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ubidiwrt.c -o icu55/common/ubidiwrt.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucat.c -o icu55/common/ucat.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/uchar.c -o icu55/common/uchar.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucmndata.c -o icu55/common/ucmndata.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv.c -o icu55/common/ucnv.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_cb.c -o icu55/common/ucnv_cb.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_cnv.c -o icu55/common/ucnv_cnv.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_ct.c -o icu55/common/ucnv_ct.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnvdisp.c -o icu55/common/ucnvdisp.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_err.c -o icu55/common/ucnv_err.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnvhz.c -o icu55/common/ucnvhz.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnvisci.c -o icu55/common/ucnvisci.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnvlat1.c -o icu55/common/ucnvlat1.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_lmb.c -o icu55/common/ucnv_lmb.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnvscsu.c -o icu55/common/ucnvscsu.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_set.c -o icu55/common/ucnv_set.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_u16.c -o icu55/common/ucnv_u16.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_u32.c -o icu55/common/ucnv_u32.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_u7.c -o icu55/common/ucnv_u7.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ucnv_u8.c -o icu55/common/ucnv_u8.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/udatamem.c -o icu55/common/udatamem.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/udataswp.c -o icu55/common/udataswp.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/uenum.c -o icu55/common/uenum.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/uhash.c -o icu55/common/uhash.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/uinvchar.c -o icu55/common/uinvchar.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ulist.c -o icu55/common/ulist.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/uloc_tag.c -o icu55/common/uloc_tag.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/umapfile.c -o icu55/common/umapfile.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/umath.c -o icu55/common/umath.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ures_cnv.c -o icu55/common/ures_cnv.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/uresdata.c -o icu55/common/uresdata.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/usc_impl.c -o icu55/common/usc_impl.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/uscript.c -o icu55/common/uscript.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/ustrfmt.c -o icu55/common/ustrfmt.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/utf_impl.c -o icu55/common/utf_impl.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/utrace.c -o icu55/common/utrace.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/utypes.c -o icu55/common/utypes.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/common/wintz.c -o icu55/common/wintz.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/alphaindex.cpp -o icu55/i18n/alphaindex.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/anytrans.cpp -o icu55/i18n/anytrans.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/astro.cpp -o icu55/i18n/astro.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/basictz.cpp -o icu55/i18n/basictz.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/bocsu.cpp -o icu55/i18n/bocsu.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/brktrans.cpp -o icu55/i18n/brktrans.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/buddhcal.cpp -o icu55/i18n/buddhcal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/calendar.cpp -o icu55/i18n/calendar.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/casetrn.cpp -o icu55/i18n/casetrn.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/cecal.cpp -o icu55/i18n/cecal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/chnsecal.cpp -o icu55/i18n/chnsecal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/choicfmt.cpp -o icu55/i18n/choicfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/coleitr.cpp -o icu55/i18n/coleitr.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationbuilder.cpp -o icu55/i18n/collationbuilder.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationcompare.cpp -o icu55/i18n/collationcompare.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collation.cpp -o icu55/i18n/collation.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationdatabuilder.cpp -o icu55/i18n/collationdatabuilder.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationdata.cpp -o icu55/i18n/collationdata.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationdatareader.cpp -o icu55/i18n/collationdatareader.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationdatawriter.cpp -o icu55/i18n/collationdatawriter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationfastlatinbuilder.cpp -o icu55/i18n/collationfastlatinbuilder.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationfastlatin.cpp -o icu55/i18n/collationfastlatin.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationfcd.cpp -o icu55/i18n/collationfcd.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationiterator.cpp -o icu55/i18n/collationiterator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationkeys.cpp -o icu55/i18n/collationkeys.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationroot.cpp -o icu55/i18n/collationroot.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationrootelements.cpp -o icu55/i18n/collationrootelements.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationruleparser.cpp -o icu55/i18n/collationruleparser.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationsets.cpp -o icu55/i18n/collationsets.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationsettings.cpp -o icu55/i18n/collationsettings.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationtailoring.cpp -o icu55/i18n/collationtailoring.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/collationweights.cpp -o icu55/i18n/collationweights.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/coll.cpp -o icu55/i18n/coll.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/compactdecimalformat.cpp -o icu55/i18n/compactdecimalformat.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/coptccal.cpp -o icu55/i18n/coptccal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/cpdtrans.cpp -o icu55/i18n/cpdtrans.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/csdetect.cpp -o icu55/i18n/csdetect.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/csmatch.cpp -o icu55/i18n/csmatch.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/csr2022.cpp -o icu55/i18n/csr2022.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/csrecog.cpp -o icu55/i18n/csrecog.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/csrmbcs.cpp -o icu55/i18n/csrmbcs.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/csrsbcs.cpp -o icu55/i18n/csrsbcs.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/csrucode.cpp -o icu55/i18n/csrucode.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/csrutf8.cpp -o icu55/i18n/csrutf8.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/curramt.cpp -o icu55/i18n/curramt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/currfmt.cpp -o icu55/i18n/currfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/currpinf.cpp -o icu55/i18n/currpinf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/currunit.cpp -o icu55/i18n/currunit.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/dangical.cpp -o icu55/i18n/dangical.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/datefmt.cpp -o icu55/i18n/datefmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/dcfmtsym.cpp -o icu55/i18n/dcfmtsym.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/decfmtst.cpp -o icu55/i18n/decfmtst.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/decimalformatpattern.cpp -o icu55/i18n/decimalformatpattern.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/decimfmt.cpp -o icu55/i18n/decimfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/digitlst.cpp -o icu55/i18n/digitlst.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/dtfmtsym.cpp -o icu55/i18n/dtfmtsym.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/dtitvfmt.cpp -o icu55/i18n/dtitvfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/dtitvinf.cpp -o icu55/i18n/dtitvinf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/dtptngen.cpp -o icu55/i18n/dtptngen.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/dtrule.cpp -o icu55/i18n/dtrule.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/esctrn.cpp -o icu55/i18n/esctrn.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ethpccal.cpp -o icu55/i18n/ethpccal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/filteredbrk.cpp -o icu55/i18n/filteredbrk.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/fmtable_cnv.cpp -o icu55/i18n/fmtable_cnv.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/fmtable.cpp -o icu55/i18n/fmtable.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/format.cpp -o icu55/i18n/format.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/fphdlimp.cpp -o icu55/i18n/fphdlimp.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/fpositer.cpp -o icu55/i18n/fpositer.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/funcrepl.cpp -o icu55/i18n/funcrepl.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/gender.cpp -o icu55/i18n/gender.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/gregocal.cpp -o icu55/i18n/gregocal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/gregoimp.cpp -o icu55/i18n/gregoimp.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/hebrwcal.cpp -o icu55/i18n/hebrwcal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/identifier_info.cpp -o icu55/i18n/identifier_info.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/indiancal.cpp -o icu55/i18n/indiancal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/inputext.cpp -o icu55/i18n/inputext.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/islamcal.cpp -o icu55/i18n/islamcal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/japancal.cpp -o icu55/i18n/japancal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/locdspnm.cpp -o icu55/i18n/locdspnm.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/measfmt.cpp -o icu55/i18n/measfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/measunit.cpp -o icu55/i18n/measunit.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/measure.cpp -o icu55/i18n/measure.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/msgfmt.cpp -o icu55/i18n/msgfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/name2uni.cpp -o icu55/i18n/name2uni.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/nfrs.cpp -o icu55/i18n/nfrs.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/nfrule.cpp -o icu55/i18n/nfrule.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/nfsubs.cpp -o icu55/i18n/nfsubs.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/nortrans.cpp -o icu55/i18n/nortrans.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/nultrans.cpp -o icu55/i18n/nultrans.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/numfmt.cpp -o icu55/i18n/numfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/numsys.cpp -o icu55/i18n/numsys.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/olsontz.cpp -o icu55/i18n/olsontz.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/persncal.cpp -o icu55/i18n/persncal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/plurfmt.cpp -o icu55/i18n/plurfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/plurrule.cpp -o icu55/i18n/plurrule.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/quant.cpp -o icu55/i18n/quant.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/quantityformatter.cpp -o icu55/i18n/quantityformatter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rbnf.cpp -o icu55/i18n/rbnf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rbt.cpp -o icu55/i18n/rbt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rbt_data.cpp -o icu55/i18n/rbt_data.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rbt_pars.cpp -o icu55/i18n/rbt_pars.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rbt_rule.cpp -o icu55/i18n/rbt_rule.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rbt_set.cpp -o icu55/i18n/rbt_set.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rbtz.cpp -o icu55/i18n/rbtz.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/regexcmp.cpp -o icu55/i18n/regexcmp.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/regeximp.cpp -o icu55/i18n/regeximp.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/regexst.cpp -o icu55/i18n/regexst.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/regextxt.cpp -o icu55/i18n/regextxt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/region.cpp -o icu55/i18n/region.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/reldatefmt.cpp -o icu55/i18n/reldatefmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/reldtfmt.cpp -o icu55/i18n/reldtfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rematch.cpp -o icu55/i18n/rematch.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/remtrans.cpp -o icu55/i18n/remtrans.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/repattrn.cpp -o icu55/i18n/repattrn.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/rulebasedcollator.cpp -o icu55/i18n/rulebasedcollator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/scientificnumberformatter.cpp -o icu55/i18n/scientificnumberformatter.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/scriptset.cpp -o icu55/i18n/scriptset.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/search.cpp -o icu55/i18n/search.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/selfmt.cpp -o icu55/i18n/selfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/sharedbreakiterator.cpp -o icu55/i18n/sharedbreakiterator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/simpletz.cpp -o icu55/i18n/simpletz.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/smpdtfmt.cpp -o icu55/i18n/smpdtfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/smpdtfst.cpp -o icu55/i18n/smpdtfst.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/sortkey.cpp -o icu55/i18n/sortkey.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/strmatch.cpp -o icu55/i18n/strmatch.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/strrepl.cpp -o icu55/i18n/strrepl.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/stsearch.cpp -o icu55/i18n/stsearch.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/taiwncal.cpp -o icu55/i18n/taiwncal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/timezone.cpp -o icu55/i18n/timezone.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/titletrn.cpp -o icu55/i18n/titletrn.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tmunit.cpp -o icu55/i18n/tmunit.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tmutamt.cpp -o icu55/i18n/tmutamt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tmutfmt.cpp -o icu55/i18n/tmutfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tolowtrn.cpp -o icu55/i18n/tolowtrn.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/toupptrn.cpp -o icu55/i18n/toupptrn.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/translit.cpp -o icu55/i18n/translit.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/transreg.cpp -o icu55/i18n/transreg.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tridpars.cpp -o icu55/i18n/tridpars.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tzfmt.cpp -o icu55/i18n/tzfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tzgnames.cpp -o icu55/i18n/tzgnames.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tznames.cpp -o icu55/i18n/tznames.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tznames_impl.cpp -o icu55/i18n/tznames_impl.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tzrule.cpp -o icu55/i18n/tzrule.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/tztrans.cpp -o icu55/i18n/tztrans.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ucal.cpp -o icu55/i18n/ucal.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ucln_in.cpp -o icu55/i18n/ucln_in.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ucol.cpp -o icu55/i18n/ucol.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ucoleitr.cpp -o icu55/i18n/ucoleitr.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ucol_res.cpp -o icu55/i18n/ucol_res.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ucol_sit.cpp -o icu55/i18n/ucol_sit.o
In file included from icu55/unicode/platform.h:23:0,
                 from icu55/unicode/ptypes.h:50,
                 from icu55/unicode/umachine.h:44,
                 from icu55/unicode/utypes.h:36,
                 from icu55/unicode/ustring.h:19,
                 from icu55/i18n/ucol_sit.cpp:16:
icu55/i18n/ucol_sit.cpp: In function ‘UCollator* ucol_openFromShortString_55(const char*, UBool, UParseError*, UErrorCode*)’:
icu55/unicode/urename.h:758:54: warning: ‘uint32_t ucol_setVariableTop_55(UCollator*, const UChar*, int32_t, UErrorCode*)’ is deprecated (declared at icu55/unicode/ucol.h:1254) [-Wdeprecated-declarations]
 #define ucol_setVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_setVariableTop)
                                                      ^
icu55/unicode/uvernum.h:110:43: note: in definition of macro ‘U_DEF_ICU_ENTRY_POINT_RENAME’
 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
                                           ^
icu55/unicode/uvernum.h:112:40: note: in expansion of macro ‘U_DEF2_ICU_ENTRY_POINT_RENAME’
 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
                                        ^
icu55/unicode/urename.h:758:29: note: in expansion of macro ‘U_ICU_ENTRY_POINT_RENAME’
 #define ucol_setVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_setVariableTop)
                             ^
icu55/i18n/ucol_sit.cpp:543:13: note: in expansion of macro ‘ucol_setVariableTop’
             ucol_setVariableTop(result, s.variableTopString, s.variableTopStringLen, status);
             ^
icu55/i18n/ucol_sit.cpp:543:92: warning: ‘uint32_t ucol_setVariableTop_55(UCollator*, const UChar*, int32_t, UErrorCode*)’ is deprecated (declared at icu55/unicode/ucol.h:1254) [-Wdeprecated-declarations]
             ucol_setVariableTop(result, s.variableTopString, s.variableTopStringLen, status);
                                                                                            ^
In file included from icu55/unicode/platform.h:23:0,
                 from icu55/unicode/ptypes.h:50,
                 from icu55/unicode/umachine.h:44,
                 from icu55/unicode/utypes.h:36,
                 from icu55/unicode/ustring.h:19,
                 from icu55/i18n/ucol_sit.cpp:16:
icu55/unicode/urename.h:749:58: warning: ‘void ucol_restoreVariableTop_55(UCollator*, uint32_t, UErrorCode*)’ is deprecated (declared at icu55/unicode/ucol.h:1286) [-Wdeprecated-declarations]
 #define ucol_restoreVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_restoreVariableTop)
                                                          ^
icu55/unicode/uvernum.h:110:43: note: in definition of macro ‘U_DEF_ICU_ENTRY_POINT_RENAME’
 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
                                           ^
icu55/unicode/uvernum.h:112:40: note: in expansion of macro ‘U_DEF2_ICU_ENTRY_POINT_RENAME’
 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
                                        ^
icu55/unicode/urename.h:749:33: note: in expansion of macro ‘U_ICU_ENTRY_POINT_RENAME’
 #define ucol_restoreVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_restoreVariableTop)
                                 ^
icu55/i18n/ucol_sit.cpp:545:13: note: in expansion of macro ‘ucol_restoreVariableTop’
             ucol_restoreVariableTop(result, s.variableTopValue, status);
             ^
icu55/i18n/ucol_sit.cpp:545:71: warning: ‘void ucol_restoreVariableTop_55(UCollator*, uint32_t, UErrorCode*)’ is deprecated (declared at icu55/unicode/ucol.h:1286) [-Wdeprecated-declarations]
             ucol_restoreVariableTop(result, s.variableTopValue, status);
                                                                       ^
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ucsdet.cpp -o icu55/i18n/ucsdet.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ucurr.cpp -o icu55/i18n/ucurr.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/udat.cpp -o icu55/i18n/udat.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/udateintervalformat.cpp -o icu55/i18n/udateintervalformat.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/udatpg.cpp -o icu55/i18n/udatpg.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ufieldpositer.cpp -o icu55/i18n/ufieldpositer.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uitercollationiterator.cpp -o icu55/i18n/uitercollationiterator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/umsg.cpp -o icu55/i18n/umsg.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/unesctrn.cpp -o icu55/i18n/unesctrn.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uni2name.cpp -o icu55/i18n/uni2name.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/unum.cpp -o icu55/i18n/unum.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/unumsys.cpp -o icu55/i18n/unumsys.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/upluralrules.cpp -o icu55/i18n/upluralrules.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uregexc.cpp -o icu55/i18n/uregexc.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uregex.cpp -o icu55/i18n/uregex.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uregion.cpp -o icu55/i18n/uregion.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/usearch.cpp -o icu55/i18n/usearch.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uspoof_build.cpp -o icu55/i18n/uspoof_build.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uspoof_conf.cpp -o icu55/i18n/uspoof_conf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uspoof.cpp -o icu55/i18n/uspoof.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uspoof_impl.cpp -o icu55/i18n/uspoof_impl.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/uspoof_wsconf.cpp -o icu55/i18n/uspoof_wsconf.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/utf16collationiterator.cpp -o icu55/i18n/utf16collationiterator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/utf8collationiterator.cpp -o icu55/i18n/utf8collationiterator.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/utrans.cpp -o icu55/i18n/utrans.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/vtzone.cpp -o icu55/i18n/vtzone.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/vzone.cpp -o icu55/i18n/vzone.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/windtfmt.cpp -o icu55/i18n/windtfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/winnmfmt.cpp -o icu55/i18n/winnmfmt.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/wintzimpl.cpp -o icu55/i18n/wintzimpl.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/zonemeta.cpp -o icu55/i18n/zonemeta.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/zrule.cpp -o icu55/i18n/zrule.o
g++ -std=c++11 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables -c icu55/i18n/ztrans.cpp -o icu55/i18n/ztrans.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/i18n/decContext.c -o icu55/i18n/decContext.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/i18n/decNumber.c -o icu55/i18n/decNumber.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/i18n/ulocdata.c -o icu55/i18n/ulocdata.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/i18n/utmscale.c -o icu55/i18n/utmscale.o
gcc -std=gnu99 -I/usr/lib64/R/include -DNDEBUG -I. -Iicu55 -Iicu55/unicode -Iicu55/common -Iicu55/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL  -UDEBUG -DNDEBUG -DU_HAVE_ELF_H -I/usr/local/include    -fpic  -fmessage-length=0 -grecord-gcc-switches -fstack-protector -O2 -Wall -D_FORTIFY_SOURCE=2 -funwind-tables -fasynchronous-unwind-tables  -c icu55/stubdata/stubdata.c -o icu55/stubdata/stubdata.o
g++ -std=c++11 -shared -L/usr/lib64/R/lib -L/usr/local/lib64 -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_replace.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_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 icu55/common/appendable.o icu55/common/bmpset.o icu55/common/brkeng.o icu55/common/brkiter.o icu55/common/bytestream.o icu55/common/bytestriebuilder.o icu55/common/bytestrie.o icu55/common/bytestrieiterator.o icu55/common/caniter.o icu55/common/chariter.o icu55/common/charstr.o icu55/common/dictbe.o icu55/common/dictionarydata.o icu55/common/dtintrv.o icu55/common/errorcode.o icu55/common/filterednormalizer2.o icu55/common/icuplug.o icu55/common/listformatter.o icu55/common/loadednormalizer2impl.o icu55/common/locavailable.o icu55/common/locbased.o icu55/common/locdispnames.o icu55/common/locid.o icu55/common/loclikely.o icu55/common/locresdata.o icu55/common/locutil.o icu55/common/messagepattern.o icu55/common/normalizer2.o icu55/common/normalizer2impl.o icu55/common/normlzr.o icu55/common/parsepos.o icu55/common/patternprops.o icu55/common/propname.o icu55/common/punycode.o icu55/common/putil.o icu55/common/rbbi.o icu55/common/rbbidata.o icu55/common/rbbinode.o icu55/common/rbbirb.o icu55/common/rbbiscan.o icu55/common/rbbisetb.o icu55/common/rbbistbl.o icu55/common/rbbitblb.o icu55/common/resbund_cnv.o icu55/common/resbund.o icu55/common/ruleiter.o icu55/common/schriter.o icu55/common/serv.o icu55/common/servlk.o icu55/common/servlkf.o icu55/common/servls.o icu55/common/servnotf.o icu55/common/servrbf.o icu55/common/servslkf.o icu55/common/sharedobject.o icu55/common/simplepatternformatter.o icu55/common/stringpiece.o icu55/common/stringtriebuilder.o icu55/common/ubrk.o icu55/common/ucase.o icu55/common/ucasemap.o icu55/common/ucasemap_titlecase_brkiter.o icu55/common/ucharstriebuilder.o icu55/common/ucharstrie.o icu55/common/ucharstrieiterator.o icu55/common/uchriter.o icu55/common/ucln_cmn.o icu55/common/ucnv2022.o icu55/common/ucnv_bld.o icu55/common/ucnvbocu.o icu55/common/ucnv_ext.o icu55/common/ucnv_io.o icu55/common/ucnvmbcs.o icu55/common/ucnvsel.o icu55/common/ucol_swp.o icu55/common/udata.o icu55/common/uhash_us.o icu55/common/uidna.o icu55/common/uinit.o icu55/common/uiter.o icu55/common/ulistformatter.o icu55/common/uloc.o icu55/common/uloc_keytype.o icu55/common/umutex.o icu55/common/unames.o icu55/common/unifiedcache.o icu55/common/unifilt.o icu55/common/unifunct.o icu55/common/uniset_closure.o icu55/common/uniset.o icu55/common/uniset_props.o icu55/common/unisetspan.o icu55/common/unistr_case.o icu55/common/unistr_case_locale.o icu55/common/unistr_cnv.o icu55/common/unistr.o icu55/common/unistr_props.o icu55/common/unistr_titlecase_brkiter.o icu55/common/unormcmp.o icu55/common/unorm.o icu55/common/uobject.o icu55/common/uprops.o icu55/common/uresbund.o icu55/common/uscript_props.o icu55/common/uset.o icu55/common/usetiter.o icu55/common/uset_props.o icu55/common/ushape.o icu55/common/usprep.o icu55/common/ustack.o icu55/common/ustrcase.o icu55/common/ustrcase_locale.o icu55/common/ustr_cnv.o icu55/common/ustrenum.o icu55/common/ustring.o icu55/common/ustr_titlecase_brkiter.o icu55/common/ustrtrns.o icu55/common/ustr_wcs.o icu55/common/utext.o icu55/common/util.o icu55/common/util_props.o icu55/common/utrie2_builder.o icu55/common/utrie2.o icu55/common/utrie.o icu55/common/uts46.o icu55/common/uvector.o icu55/common/uvectr32.o icu55/common/uvectr64.o icu55/common/cmemory.o icu55/common/cstring.o icu55/common/cwchar.o icu55/common/icudataver.o icu55/common/locmap.o icu55/common/propsvec.o icu55/common/uarrsort.o icu55/common/ubidi.o icu55/common/ubidiln.o icu55/common/ubidi_props.o icu55/common/ubidiwrt.o icu55/common/ucat.o icu55/common/uchar.o icu55/common/ucmndata.o icu55/common/ucnv.o icu55/common/ucnv_cb.o icu55/common/ucnv_cnv.o icu55/common/ucnv_ct.o icu55/common/ucnvdisp.o icu55/common/ucnv_err.o icu55/common/ucnvhz.o icu55/common/ucnvisci.o icu55/common/ucnvlat1.o icu55/common/ucnv_lmb.o icu55/common/ucnvscsu.o icu55/common/ucnv_set.o icu55/common/ucnv_u16.o icu55/common/ucnv_u32.o icu55/common/ucnv_u7.o icu55/common/ucnv_u8.o icu55/common/udatamem.o icu55/common/udataswp.o icu55/common/uenum.o icu55/common/uhash.o icu55/common/uinvchar.o icu55/common/ulist.o icu55/common/uloc_tag.o icu55/common/umapfile.o icu55/common/umath.o icu55/common/ures_cnv.o icu55/common/uresdata.o icu55/common/usc_impl.o icu55/common/uscript.o icu55/common/ustrfmt.o icu55/common/utf_impl.o icu55/common/utrace.o icu55/common/utypes.o icu55/common/wintz.o icu55/i18n/alphaindex.o icu55/i18n/anytrans.o icu55/i18n/astro.o icu55/i18n/basictz.o icu55/i18n/bocsu.o icu55/i18n/brktrans.o icu55/i18n/buddhcal.o icu55/i18n/calendar.o icu55/i18n/casetrn.o icu55/i18n/cecal.o icu55/i18n/chnsecal.o icu55/i18n/choicfmt.o icu55/i18n/coleitr.o icu55/i18n/collationbuilder.o icu55/i18n/collationcompare.o icu55/i18n/collation.o icu55/i18n/collationdatabuilder.o icu55/i18n/collationdata.o icu55/i18n/collationdatareader.o icu55/i18n/collationdatawriter.o icu55/i18n/collationfastlatinbuilder.o icu55/i18n/collationfastlatin.o icu55/i18n/collationfcd.o icu55/i18n/collationiterator.o icu55/i18n/collationkeys.o icu55/i18n/collationroot.o icu55/i18n/collationrootelements.o icu55/i18n/collationruleparser.o icu55/i18n/collationsets.o icu55/i18n/collationsettings.o icu55/i18n/collationtailoring.o icu55/i18n/collationweights.o icu55/i18n/coll.o icu55/i18n/compactdecimalformat.o icu55/i18n/coptccal.o icu55/i18n/cpdtrans.o icu55/i18n/csdetect.o icu55/i18n/csmatch.o icu55/i18n/csr2022.o icu55/i18n/csrecog.o icu55/i18n/csrmbcs.o icu55/i18n/csrsbcs.o icu55/i18n/csrucode.o icu55/i18n/csrutf8.o icu55/i18n/curramt.o icu55/i18n/currfmt.o icu55/i18n/currpinf.o icu55/i18n/currunit.o icu55/i18n/dangical.o icu55/i18n/datefmt.o icu55/i18n/dcfmtsym.o icu55/i18n/decfmtst.o icu55/i18n/decimalformatpattern.o icu55/i18n/decimfmt.o icu55/i18n/digitlst.o icu55/i18n/dtfmtsym.o icu55/i18n/dtitvfmt.o icu55/i18n/dtitvinf.o icu55/i18n/dtptngen.o icu55/i18n/dtrule.o icu55/i18n/esctrn.o icu55/i18n/ethpccal.o icu55/i18n/filteredbrk.o icu55/i18n/fmtable_cnv.o icu55/i18n/fmtable.o icu55/i18n/format.o icu55/i18n/fphdlimp.o icu55/i18n/fpositer.o icu55/i18n/funcrepl.o icu55/i18n/gender.o icu55/i18n/gregocal.o icu55/i18n/gregoimp.o icu55/i18n/hebrwcal.o icu55/i18n/identifier_info.o icu55/i18n/indiancal.o icu55/i18n/inputext.o icu55/i18n/islamcal.o icu55/i18n/japancal.o icu55/i18n/locdspnm.o icu55/i18n/measfmt.o icu55/i18n/measunit.o icu55/i18n/measure.o icu55/i18n/msgfmt.o icu55/i18n/name2uni.o icu55/i18n/nfrs.o icu55/i18n/nfrule.o icu55/i18n/nfsubs.o icu55/i18n/nortrans.o icu55/i18n/nultrans.o icu55/i18n/numfmt.o icu55/i18n/numsys.o icu55/i18n/olsontz.o icu55/i18n/persncal.o icu55/i18n/plurfmt.o icu55/i18n/plurrule.o icu55/i18n/quant.o icu55/i18n/quantityformatter.o icu55/i18n/rbnf.o icu55/i18n/rbt.o icu55/i18n/rbt_data.o icu55/i18n/rbt_pars.o icu55/i18n/rbt_rule.o icu55/i18n/rbt_set.o icu55/i18n/rbtz.o icu55/i18n/regexcmp.o icu55/i18n/regeximp.o icu55/i18n/regexst.o icu55/i18n/regextxt.o icu55/i18n/region.o icu55/i18n/reldatefmt.o icu55/i18n/reldtfmt.o icu55/i18n/rematch.o icu55/i18n/remtrans.o icu55/i18n/repattrn.o icu55/i18n/rulebasedcollator.o icu55/i18n/scientificnumberformatter.o icu55/i18n/scriptset.o icu55/i18n/search.o icu55/i18n/selfmt.o icu55/i18n/sharedbreakiterator.o icu55/i18n/simpletz.o icu55/i18n/smpdtfmt.o icu55/i18n/smpdtfst.o icu55/i18n/sortkey.o icu55/i18n/strmatch.o icu55/i18n/strrepl.o icu55/i18n/stsearch.o icu55/i18n/taiwncal.o icu55/i18n/timezone.o icu55/i18n/titletrn.o icu55/i18n/tmunit.o icu55/i18n/tmutamt.o icu55/i18n/tmutfmt.o icu55/i18n/tolowtrn.o icu55/i18n/toupptrn.o icu55/i18n/translit.o icu55/i18n/transreg.o icu55/i18n/tridpars.o icu55/i18n/tzfmt.o icu55/i18n/tzgnames.o icu55/i18n/tznames.o icu55/i18n/tznames_impl.o icu55/i18n/tzrule.o icu55/i18n/tztrans.o icu55/i18n/ucal.o icu55/i18n/ucln_in.o icu55/i18n/ucol.o icu55/i18n/ucoleitr.o icu55/i18n/ucol_res.o icu55/i18n/ucol_sit.o icu55/i18n/ucsdet.o icu55/i18n/ucurr.o icu55/i18n/udat.o icu55/i18n/udateintervalformat.o icu55/i18n/udatpg.o icu55/i18n/ufieldpositer.o icu55/i18n/uitercollationiterator.o icu55/i18n/umsg.o icu55/i18n/unesctrn.o icu55/i18n/uni2name.o icu55/i18n/unum.o icu55/i18n/unumsys.o icu55/i18n/upluralrules.o icu55/i18n/uregexc.o icu55/i18n/uregex.o icu55/i18n/uregion.o icu55/i18n/usearch.o icu55/i18n/uspoof_build.o icu55/i18n/uspoof_conf.o icu55/i18n/uspoof.o icu55/i18n/uspoof_impl.o icu55/i18n/uspoof_wsconf.o icu55/i18n/utf16collationiterator.o icu55/i18n/utf8collationiterator.o icu55/i18n/utrans.o icu55/i18n/vtzone.o icu55/i18n/vzone.o icu55/i18n/windtfmt.o icu55/i18n/winnmfmt.o icu55/i18n/wintzimpl.o icu55/i18n/zonemeta.o icu55/i18n/zrule.o icu55/i18n/ztrans.o icu55/i18n/decContext.o icu55/i18n/decNumber.o icu55/i18n/ulocdata.o icu55/i18n/utmscale.o icu55/stubdata/stubdata.o -L/usr/lib64/R/lib -lR
installing via 'install.libs.R' to /data/home/nachtmann/git/stinst/stringi
downloading ICU data library (icudt)
the files will be extracted to: /data/home/nachtmann/git/stinst/stringi/libs
no icudt in a local repo
trying URL 'http://static.rexamine.com/packages/icudt55l.zip'
Content type 'application/zip' length 10176327 bytes (9.7 MB)
==================================================
downloaded 9.7 MB

icudt fetch OK
decompressing downloaded archive
icudt has been installed successfully
restart R to apply changes
** R
** inst
** preparing package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
* DONE (stringi)

Within R:

> library(stringi, lib.loc="stinst/")
> stri_install_check()
stringi_0.5.2; en_US.UTF-8; ICU4C 55.1; Unicode 7.0
All tests completed successfully.
gagolews commented 9 years ago

Thanks!