You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Jonathan Keane (Jira)" <ji...@apache.org> on 2021/06/28 14:02:00 UTC

[jira] [Commented] (ARROW-13192) [R] Unable to Install

    [ https://issues.apache.org/jira/browse/ARROW-13192?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17370609#comment-17370609 ] 

Jonathan Keane commented on ARROW-13192:
----------------------------------------

Hello, thank you for the very detailed report here, that really helps in figuring out what is going on.

Ultimately, it looks like the build process is failing while trying to install the AWS sdk dependency. I haven't seen this specific error in the past, but will try and get a docker container with this flavor of linux to re-create the issue.

In the mean time I did notice a few things that are a bit odd / might help with this:

* It looks like you're using an MRAN snapshot from back when Arrow 3.0.0 was the released version — we've since had one major and one minor release (we're at 4.0.1). I would recommend trying to install the latest version if possible. We have bumped the required version number for that AWS sdk (from 1.8.90 in 3.0.0 to 1.8.133 in 4.0.0). This bump might resolve the build issue in this one dependency.

If that first suggestion doesn't improve things, there are a few other possibilities that might get you unblocked (with varying levels of complication):
* This particular dependency is only really necessary and will only be build if you enable the S3 features in Arrow. These are enabled by default when building with  {{install_arrow()}}. If you don't need to use S3 with arrow, you could try disabling those features:
{code:r}
 Sys.setenv(
      ARROW_S3="OFF",
      # these below are what minimal=false turns on, but feel free to trun any of these compression or memory allocators off that you don't need or want to build.
      ARROW_JEMALLOC="ON",
      ARROW_WITH_BROTLI="ON",
      ARROW_WITH_BZ2="ON",
      ARROW_WITH_LZ4="ON",
      ARROW_WITH_SNAPPY="ON",
      ARROW_WITH_ZLIB="ON",
      ARROW_WITH_ZSTD="ON"
    )
    arrow::install_arrow(verbose = TRUE, minimal = TRUE)
{code}
* Alternatively, you could try building + installing the AWS sdk manually and if that succeeds arrow will pick it up (https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/setup-linux.html has some more information about that). Thought note you'll need to get the sdk version that matches the requirements for arrow (AWS SDK 1.8.90 for 3.0.0 and 1.8.133 for 4.0.0 and 4.0.1).


> [R] Unable to Install 
> ----------------------
>
>                 Key: ARROW-13192
>                 URL: https://issues.apache.org/jira/browse/ARROW-13192
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: R
>    Affects Versions: 4.0.1
>         Environment: Manjaro Linux v21
>            Reporter: Carlos Parada
>            Priority: Major
>
> Attempting to install Arrow from R fails on Manjaro Linux. (Note that Manjaro is Arch-based, so any binaries for Arch should work just fine on Manjaro.) Here's the output of verbose:
>  
> ```
> Installing package into ‘/home/lime/R/x86_64-pc-linux-gnu-library/4.1’
>  (as ‘lib’ is unspecified)
>  trying URL 'https://mran.revolutionanalytics.com/snapshot/2021-02-26/src/contrib/arrow_3.0.0.tar.gz'
>  Content type 'application/octet-stream' length 344814 bytes (336 KB)
>  ==================================================
>  downloaded 336 KB
>  * installing *source* package ‘arrow’ ...
>  ** package ‘arrow’ successfully unpacked and MD5 sums checked
>  ** using staged installation
>  *** No C++ binaries found for manjarolinux-21
>  *** Successfully retrieved C++ source
>  *** Building C++ libraries
>  **** arrow
>  PKG_CFLAGS=-I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW
>  PKG_LIBS=-larrow_dataset -lparquet -larrow
>  ** libs
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c array.cpp -o array.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c array_from_vector.cpp -o array_from_vector.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c array_to_vector.cpp -o array_to_vector.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c arraydata.cpp -o arraydata.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c arrowExports.cpp -o arrowExports.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c buffer.cpp -o buffer.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c chunkedarray.cpp -o chunkedarray.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c compression.cpp -o compression.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c compute.cpp -o compute.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c csv.cpp -o csv.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c dataset.cpp -o dataset.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c datatype.cpp -o datatype.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c expression.cpp -o expression.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c feather.cpp -o feather.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c field.cpp -o field.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c filesystem.cpp -o filesystem.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c imports.cpp -o imports.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c io.cpp -o io.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c json.cpp -o json.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c memorypool.cpp -o memorypool.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c message.cpp -o message.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c parquet.cpp -o parquet.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c py-to-r.cpp -o py-to-r.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c recordbatch.cpp -o recordbatch.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c recordbatchreader.cpp -o recordbatchreader.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c recordbatchwriter.cpp -o recordbatchwriter.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c scalar.cpp -o scalar.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c schema.cpp -o schema.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c symbols.cpp -o symbols.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c table.cpp -o table.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmpEJir6E/R.INSTALL911746e29c84b/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c threadpool.cpp -o threadpool.o
>  g++ -std=gnu++11 -shared -L/usr/lib64/R/lib -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o arrow.so array.o array_from_vector.o array_to_vector.o arraydata.o arrowExports.o buffer.o chunkedarray.o compression.o compute.o csv.o dataset.o datatype.o expression.o feather.o field.o filesystem.o imports.o io.o json.o memorypool.o message.o parquet.o py-to-r.o recordbatch.o recordbatchreader.o recordbatchwriter.o scalar.o schema.o symbols.o table.o threadpool.o -larrow_dataset -lparquet -larrow -L/usr/lib64/R/lib -lR
>  installing to /home/lime/R/x86_64-pc-linux-gnu-library/4.1/00LOCK-arrow/00new/arrow/libs
>  ** R
>  ** inst
>  ** byte-compile and prepare package for lazy loading
>  ** help
>  *** installing help indices
>  ** building package indices
>  ** installing vignettes
>  ** testing if installed package can be loaded from temporary location
>  ** checking absolute paths in shared objects and dynamic libraries
>  ** testing if installed package can be loaded from final location
>  ** testing if installed package keeps a record of temporary installation path
>  * DONE (arrow)
> The downloaded source packages are in
>  ‘/tmp/RtmppYM4Sz/downloaded_packages’
> Attaching package: ‘arrow’
> The following object is masked from ‘package:utils’:
> timestamp
> > write_parquet(example_loglik_array(), "~/.julia/dev/JuLOOa/test")
>  Error in all_record_batches(dots) : 
>  Cannot call all_record_batches(). See [https://arrow.apache.org/docs/r/articles/install.html] for help installing Arrow C++ libraries. 
>  > install_arrow(verbose=TRUE)
>  Installing package into ‘/home/lime/R/x86_64-pc-linux-gnu-library/4.1’
>  (as ‘lib’ is unspecified)
>  trying URL 'https://mran.revolutionanalytics.com/snapshot/2021-02-26/src/contrib/arrow_3.0.0.tar.gz'
>  Content type 'application/octet-stream' length 344814 bytes (336 KB)
>  ==================================================
>  downloaded 336 KB
>  * installing *source* package ‘arrow’ ...
>  ** package ‘arrow’ successfully unpacked and MD5 sums checked
>  ** using staged installation
>  trying URL 'https://dl.bintray.com/ursalabs/arrow-r/libarrow/bin/manjarolinux-21/arrow-3.0.0.zip'
>  Error in download.file(from_url, to_file, quiet = quietly) : 
>  cannot open URL 'https://dl.bintray.com/ursalabs/arrow-r/libarrow/bin/manjarolinux-21/arrow-3.0.0.zip'
>  *** No C++ binaries found for manjarolinux-21
>  trying URL 'https://dl.bintray.com/ursalabs/arrow-r/libarrow/src/arrow-3.0.0.zip'
>  Error in download.file(from_url, to_file, quiet = quietly) : 
>  cannot open URL 'https://dl.bintray.com/ursalabs/arrow-r/libarrow/src/arrow-3.0.0.zip'
>  trying URL 'https://www.apache.org/dyn/closer.lua?action=download&filename=arrow/arrow-3.0.0/apache-arrow-3.0.0.tar.gz'
>  Content type 'application/x-gzip' length 8200790 bytes (7.8 MB)
>  ==================================================
>  downloaded 7.8 MB
>  * 
>  ** 
>  *** Successfully retrieved C++ source
>  *** Building C++ libraries
>  *** Building with MAKEFLAGS= -j2
>  **** arrow with SOURCE_DIR="/tmp/RtmpKCHvic/file92a88443e346b/apache-arrow-3.0.0/cpp" BUILD_DIR="/tmp/RtmpKCHvic/file92a8867a73e1b" DEST_DIR="libarrow/arrow-3.0.0" CMAKE="/usr/bin/cmake" CC="gcc" CXX="g++ -std=gnu++11" LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" ARROW_S3=ON ARROW_MIMALLOC=ON
>  ++ pwd
>  + : /tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow
>  + : /tmp/RtmpKCHvic/file92a88443e346b/apache-arrow-3.0.0/cpp
>  + : /tmp/RtmpKCHvic/file92a8867a73e1b
>  + : libarrow/arrow-3.0.0
>  + : /usr/bin/cmake
>  ++ cd /tmp/RtmpKCHvic/file92a88443e346b/apache-arrow-3.0.0/cpp
>  ++ pwd
>  + SOURCE_DIR=/tmp/RtmpKCHvic/file92a88443e346b/apache-arrow-3.0.0/cpp
>  ++ mkdir -p libarrow/arrow-3.0.0
>  ++ cd libarrow/arrow-3.0.0
>  ++ pwd
>  + DEST_DIR=/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0
>  + '[' '' = '' ']'
>  + which ninja
>  + '[' FALSE = false ']'
>  + ARROW_DEFAULT_PARAM=OFF
>  + mkdir -p /tmp/RtmpKCHvic/file92a8867a73e1b
>  + pushd /tmp/RtmpKCHvic/file92a8867a73e1b
>  /tmp/RtmpKCHvic/file92a8867a73e1b /tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow
>  + /usr/bin/cmake -DARROW_BOOST_USE_SHARED=OFF -DARROW_BUILD_TESTS=OFF -DARROW_BUILD_SHARED=OFF -DARROW_BUILD_STATIC=ON -DARROW_COMPUTE=ON -DARROW_CSV=ON -DARROW_DATASET=ON -DARROW_DEPENDENCY_SOURCE=BUNDLED -DARROW_FILESYSTEM=ON -DARROW_JEMALLOC=ON -DARROW_MIMALLOC=ON -DARROW_JSON=ON -DARROW_PARQUET=ON -DARROW_S3=ON -DARROW_WITH_BROTLI=OFF -DARROW_WITH_BZ2=OFF -DARROW_WITH_LZ4=OFF -DARROW_WITH_SNAPPY=OFF -DARROW_WITH_UTF8PROC=OFF -DARROW_WITH_ZLIB=OFF -DARROW_WITH_ZSTD=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0 -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON -DCMAKE_UNITY_BUILD=ON -G 'Unix Makefiles' /tmp/RtmpKCHvic/file92a88443e346b/apache-arrow-3.0.0/cpp
>  -- Building using CMake version: 3.20.3
>  -- The C compiler identification is GNU 11.1.0
>  -- The CXX compiler identification is GNU 11.1.0
>  -- Detecting C compiler ABI info
>  -- Detecting C compiler ABI info - done
>  -- Check for working C compiler: /usr/bin/gcc - skipped
>  -- Detecting C compile features
>  -- Detecting C compile features - done
>  -- Detecting CXX compiler ABI info
>  -- Detecting CXX compiler ABI info - done
>  -- Check for working CXX compiler: /usr/bin/g++ - skipped
>  -- Detecting CXX compile features
>  -- Detecting CXX compile features - done
>  -- Arrow version: 3.0.0 (full: '3.0.0')
>  -- Arrow SO version: 300 (full: 300.0.0)
>  -- clang-tidy not found
>  -- clang-format not found
>  -- Could NOT find ClangTools (missing: CLANG_FORMAT_BIN CLANG_TIDY_BIN)
>  -- infer not found
>  fatal: not a git repository (or any parent up to mount point /)
>  Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
>  -- Found Python3: /usr/bin/python3.9 (found version "3.9.5") found components: Interpreter
>  -- Found cpplint executable at /tmp/RtmpKCHvic/file92a88443e346b/apache-arrow-3.0.0/cpp/build-support/cpplint.py
>  -- System processor: x86_64
>  -- Performing Test CXX_SUPPORTS_SSE4_2
>  -- Performing Test CXX_SUPPORTS_SSE4_2 - Success
>  -- Performing Test CXX_SUPPORTS_AVX2
>  -- Performing Test CXX_SUPPORTS_AVX2 - Success
>  -- Performing Test CXX_SUPPORTS_AVX512
>  -- Performing Test CXX_SUPPORTS_AVX512 - Success
>  -- Arrow build warning level: PRODUCTION
>  Using ld linker
>  Configured for RELEASE build (set with cmake -DCMAKE_BUILD_TYPE= \{release,debug,...}
> )
>  -- Build Type: RELEASE
>  -- Using BUNDLED approach to find dependencies
>  -- ARROW_ABSL_BUILD_VERSION: 0f3bb466b868b523cf1dc9b2aaaed65c77b28862
>  -- ARROW_AWSSDK_BUILD_VERSION: 1.8.90
>  -- ARROW_AWS_CHECKSUMS_BUILD_VERSION: v0.1.5
>  -- ARROW_AWS_C_COMMON_BUILD_VERSION: v0.4.59
>  -- ARROW_AWS_C_EVENT_STREAM_BUILD_VERSION: v0.1.5
>  -- ARROW_BOOST_BUILD_VERSION: 1.71.0
>  -- ARROW_BROTLI_BUILD_VERSION: v1.0.7
>  -- ARROW_BZIP2_BUILD_VERSION: 1.0.8
>  -- ARROW_CARES_BUILD_VERSION: 1.16.1
>  -- ARROW_GBENCHMARK_BUILD_VERSION: v1.5.2
>  -- ARROW_GFLAGS_BUILD_VERSION: v2.2.2
>  -- ARROW_GLOG_BUILD_VERSION: v0.4.0
>  -- ARROW_GRPC_BUILD_VERSION: v1.33.2
>  -- ARROW_GTEST_BUILD_VERSION: 1.10.0
>  -- ARROW_JEMALLOC_BUILD_VERSION: 5.2.1
>  -- ARROW_LZ4_BUILD_VERSION: v1.9.2
>  -- ARROW_MIMALLOC_BUILD_VERSION: v1.6.4
>  -- ARROW_ORC_BUILD_VERSION: 1.6.2
>  -- ARROW_PROTOBUF_BUILD_VERSION: v3.13.0
>  -- ARROW_RAPIDJSON_BUILD_VERSION: 1a803826f1197b5e30703afe4b9c0e7dd48074f5
>  -- ARROW_RE2_BUILD_VERSION: 2019-08-01
>  -- ARROW_SNAPPY_BUILD_VERSION: 1.1.8
>  -- ARROW_THRIFT_BUILD_VERSION: 0.12.0
>  -- ARROW_THRIFT_BUILD_MD5_CHECKSUM: 3deebbb4d1ca77dd9c9e009a1ea02183
>  -- ARROW_UTF8PROC_BUILD_VERSION: v2.5.0
>  -- ARROW_ZLIB_BUILD_VERSION: 1.2.11
>  -- ARROW_ZSTD_BUILD_VERSION: v1.4.5
>  -- Looking for pthread.h
>  -- Looking for pthread.h - found
>  -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
>  -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
>  -- Check if compiler accepts -pthread
>  -- Check if compiler accepts -pthread - yes
>  -- Found Threads: TRUE
>  -- Looking for __SIZEOF_INT128__
>  -- Looking for __SIZEOF_INT128__ - found
>  -- Boost include dir: /tmp/RtmpKCHvic/file92a8867a73e1b/boost_ep-prefix/src/boost_ep
>  -- Boost libraries: boost_system_static;boost_filesystem_static
>  -- Found OpenSSL: /usr/lib/libcrypto.so (found suitable version "1.1.1k", minimum required is "1.0.2")
>  -- Found OpenSSL Crypto Library: /usr/lib/libcrypto.so
>  -- Building with OpenSSL (Version: 1.1.1k) support
>  Building Apache Thrift from source
>  -- Building (vendored) jemalloc from source
>  -- Building (vendored) mimalloc from source
>  -- Building RapidJSON from source
>  -- Building ZLIB from source
>  -- Building RE2 from source
>  -- Found hdfs.h at: /tmp/RtmpKCHvic/file92a88443e346b/apache-arrow-3.0.0/cpp/thirdparty/hadoop/include/hdfs.h
>  Building AWS C++ SDK from source
>  -- Found CURL: /usr/lib/libcurl.so (found version "7.77.0")
>  -- Found AWS SDK headers: /tmp/RtmpKCHvic/file92a8867a73e1b/awssdk_ep-install/include
>  -- Found AWS SDK libraries: aws-cpp-sdk-identity-management;aws-cpp-sdk-sts;aws-cpp-sdk-cognito-identity;aws-cpp-sdk-s3;aws-cpp-sdk-core;AWS::aws-c-event-stream;AWS::aws-checksums;AWS::aws-c-common
>  -- All bundled static libraries: thrift::thrift;jemalloc::jemalloc;mimalloc::mimalloc;ZLIB::ZLIB;re2::re2;aws-cpp-sdk-identity-management;aws-cpp-sdk-sts;aws-cpp-sdk-cognito-identity;aws-cpp-sdk-s3;aws-cpp-sdk-core;AWS::aws-c-event-stream;AWS::aws-checksums;AWS::aws-c-common
>  -- CMAKE_C_FLAGS: -O3 -DNDEBUG -Wall -fno-semantic-interposition -msse4.2
>  -- CMAKE_CXX_FLAGS: -Wno-noexcept-type -Wno-subobject-linkage -fdiagnostics-color=always -O3 -DNDEBUG -Wall -fno-semantic-interposition -msse4.2
>  -- Looking for backtrace
>  -- Looking for backtrace - found
>  -- backtrace facility detected in default set of libraries
>  -- Found Backtrace: /usr/include
>  -- Creating bundled static library target arrow_bundled_dependencies at /tmp/RtmpKCHvic/file92a8867a73e1b/release/libarrow_bundled_dependencies.a
>  -- ---------------------------------------------------------------------
>  -- Arrow version: 3.0.0
>  -- 
>  -- Build configuration summary:
>  -- Generator: Unix Makefiles
>  -- Build type: RELEASE
>  -- Source directory: /tmp/RtmpKCHvic/file92a88443e346b/apache-arrow-3.0.0/cpp
>  -- Install prefix: /tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0
>  -- 
>  -- Compile and link options:
>  -- 
>  -- ARROW_CXXFLAGS="" [default=""]
>  -- Compiler flags to append when compiling Arrow
>  -- ARROW_BUILD_STATIC=ON [default=ON]
>  -- Build static libraries
>  -- ARROW_BUILD_SHARED=OFF [default=ON]
>  -- Build shared libraries
>  -- ARROW_PACKAGE_KIND="" [default=""]
>  -- Arbitrary string that identifies the kind of package
>  -- (for informational purposes)
>  -- ARROW_GIT_ID="" [default=""]
>  -- The Arrow git commit id (if any)
>  -- ARROW_GIT_DESCRIPTION="" [default=""]
>  -- The Arrow git commit description (if any)
>  -- ARROW_NO_DEPRECATED_API=OFF [default=OFF]
>  -- Exclude deprecated APIs from build
>  -- ARROW_USE_CCACHE=ON [default=ON]
>  -- Use ccache when compiling (if available)
>  -- ARROW_USE_LD_GOLD=OFF [default=OFF]
>  -- Use ld.gold for linking on Linux (if available)
>  -- ARROW_USE_PRECOMPILED_HEADERS=OFF [default=OFF]
>  -- Use precompiled headers when compiling
>  -- ARROW_SIMD_LEVEL=SSE4_2 [default=NONE|SSE4_2|AVX2|AVX512]
>  -- Compile-time SIMD optimization level
>  -- ARROW_RUNTIME_SIMD_LEVEL=MAX [default=NONE|SSE4_2|AVX2|AVX512|MAX]
>  -- Max runtime SIMD optimization level
>  -- ARROW_ARMV8_ARCH=armv8-a [default=armv8-a|armv8-a+crc+crypto]
>  -- Arm64 arch and extensions
>  -- ARROW_ALTIVEC=ON [default=ON]
>  -- Build with Altivec if compiler has support
>  -- ARROW_RPATH_ORIGIN=OFF [default=OFF]
>  -- Build Arrow libraries with RATH set to $ORIGIN
>  -- ARROW_INSTALL_NAME_RPATH=ON [default=ON]
>  -- Build Arrow libraries with install_name set to @rpath
>  -- ARROW_GGDB_DEBUG=ON [default=ON]
>  -- Pass -ggdb flag to debug builds
>  -- 
>  -- Test and benchmark options:
>  -- 
>  -- ARROW_BUILD_EXAMPLES=OFF [default=OFF]
>  -- Build the Arrow examples
>  -- ARROW_BUILD_TESTS=OFF [default=OFF]
>  -- Build the Arrow googletest unit tests
>  -- ARROW_ENABLE_TIMING_TESTS=ON [default=ON]
>  -- Enable timing-sensitive tests
>  -- ARROW_BUILD_INTEGRATION=OFF [default=OFF]
>  -- Build the Arrow integration test executables
>  -- ARROW_BUILD_BENCHMARKS=OFF [default=OFF]
>  -- Build the Arrow micro benchmarks
>  -- ARROW_BUILD_BENCHMARKS_REFERENCE=OFF [default=OFF]
>  -- Build the Arrow micro reference benchmarks
>  -- ARROW_TEST_LINKAGE=static [default=shared|static]
>  -- Linkage of Arrow libraries with unit tests executables.
>  -- ARROW_FUZZING=OFF [default=OFF]
>  -- Build Arrow Fuzzing executables
>  -- ARROW_LARGE_MEMORY_TESTS=OFF [default=OFF]
>  -- Enable unit tests which use large memory
>  -- 
>  -- Lint options:
>  -- 
>  -- ARROW_ONLY_LINT=OFF [default=OFF]
>  -- Only define the lint and check-format targets
>  -- ARROW_VERBOSE_LINT=OFF [default=OFF]
>  -- If off, 'quiet' flags will be passed to linting tools
>  -- ARROW_GENERATE_COVERAGE=OFF [default=OFF]
>  -- Build with C++ code coverage enabled
>  -- 
>  -- Checks options:
>  -- 
>  -- ARROW_TEST_MEMCHECK=OFF [default=OFF]
>  -- Run the test suite using valgrind --tool=memcheck
>  -- ARROW_USE_ASAN=OFF [default=OFF]
>  -- Enable Address Sanitizer checks
>  -- ARROW_USE_TSAN=OFF [default=OFF]
>  -- Enable Thread Sanitizer checks
>  -- ARROW_USE_UBSAN=OFF [default=OFF]
>  -- Enable Undefined Behavior sanitizer checks
>  -- 
>  -- Project component options:
>  -- 
>  -- ARROW_BUILD_UTILITIES=OFF [default=OFF]
>  -- Build Arrow commandline utilities
>  -- ARROW_COMPUTE=ON [default=OFF]
>  -- Build the Arrow Compute Modules
>  -- ARROW_CSV=ON [default=OFF]
>  -- Build the Arrow CSV Parser Module
>  -- ARROW_CUDA=OFF [default=OFF]
>  -- Build the Arrow CUDA extensions (requires CUDA toolkit)
>  -- ARROW_DATASET=ON [default=OFF]
>  -- Build the Arrow Dataset Modules
>  -- ARROW_FILESYSTEM=ON [default=OFF]
>  -- Build the Arrow Filesystem Layer
>  -- ARROW_FLIGHT=OFF [default=OFF]
>  -- Build the Arrow Flight RPC System (requires GRPC, Protocol Buffers)
>  -- ARROW_GANDIVA=OFF [default=OFF]
>  -- Build the Gandiva libraries
>  -- ARROW_HDFS=OFF [default=OFF]
>  -- Build the Arrow HDFS bridge
>  -- ARROW_HIVESERVER2=OFF [default=OFF]
>  -- Build the HiveServer2 client and Arrow adapter
>  -- ARROW_IPC=ON [default=ON]
>  -- Build the Arrow IPC extensions
>  -- ARROW_JEMALLOC=ON [default=ON]
>  -- Build the Arrow jemalloc-based allocator
>  -- ARROW_JNI=OFF [default=OFF]
>  -- Build the Arrow JNI lib
>  -- ARROW_JSON=ON [default=OFF]
>  -- Build Arrow with JSON support (requires RapidJSON)
>  -- ARROW_MIMALLOC=ON [default=OFF]
>  -- Build the Arrow mimalloc-based allocator
>  -- ARROW_PARQUET=ON [default=OFF]
>  -- Build the Parquet libraries
>  -- ARROW_ORC=OFF [default=OFF]
>  -- Build the Arrow ORC adapter
>  -- ARROW_PLASMA=OFF [default=OFF]
>  -- Build the plasma object store along with Arrow
>  -- ARROW_PLASMA_JAVA_CLIENT=OFF [default=OFF]
>  -- Build the plasma object store java client
>  -- ARROW_PYTHON=OFF [default=OFF]
>  -- Build the Arrow CPython extensions
>  -- ARROW_S3=ON [default=OFF]
>  -- Build Arrow with S3 support (requires the AWS SDK for C++)
>  -- ARROW_TENSORFLOW=OFF [default=OFF]
>  -- Build Arrow with TensorFlow support enabled
>  -- ARROW_TESTING=OFF [default=OFF]
>  -- Build the Arrow testing libraries
>  -- 
>  -- Thirdparty toolchain options:
>  -- 
>  -- ARROW_DEPENDENCY_SOURCE=BUNDLED [default=AUTO|BUNDLED|SYSTEM|CONDA|BREW]
>  -- Method to use for acquiring arrow's build dependencies
>  -- ARROW_VERBOSE_THIRDPARTY_BUILD=OFF [default=OFF]
>  -- Show output from ExternalProjects rather than just logging to files
>  -- ARROW_DEPENDENCY_USE_SHARED=ON [default=ON]
>  -- Link to shared libraries
>  -- ARROW_BOOST_USE_SHARED=OFF [default=ON]
>  -- Rely on boost shared libraries where relevant
>  -- ARROW_BROTLI_USE_SHARED=ON [default=ON]
>  -- Rely on Brotli shared libraries where relevant
>  -- ARROW_BZ2_USE_SHARED=ON [default=ON]
>  -- Rely on Bz2 shared libraries where relevant
>  -- ARROW_GFLAGS_USE_SHARED=ON [default=ON]
>  -- Rely on GFlags shared libraries where relevant
>  -- ARROW_GRPC_USE_SHARED=ON [default=ON]
>  -- Rely on gRPC shared libraries where relevant
>  -- ARROW_LZ4_USE_SHARED=ON [default=ON]
>  -- Rely on lz4 shared libraries where relevant
>  -- ARROW_OPENSSL_USE_SHARED=ON [default=ON]
>  -- Rely on OpenSSL shared libraries where relevant
>  -- ARROW_PROTOBUF_USE_SHARED=ON [default=ON]
>  -- Rely on Protocol Buffers shared libraries where relevant
>  -- ARROW_THRIFT_USE_SHARED=ON [default=ON]
>  -- Rely on thrift shared libraries where relevant
>  -- ARROW_UTF8PROC_USE_SHARED=ON [default=ON]
>  -- Rely on utf8proc shared libraries where relevant
>  -- ARROW_SNAPPY_USE_SHARED=ON [default=ON]
>  -- Rely on snappy shared libraries where relevant
>  -- ARROW_UTF8PROC_USE_SHARED=ON [default=ON]
>  -- Rely on utf8proc shared libraries where relevant
>  -- ARROW_ZSTD_USE_SHARED=ON [default=ON]
>  -- Rely on zstd shared libraries where relevant
>  -- ARROW_USE_GLOG=OFF [default=OFF]
>  -- Build libraries with glog support for pluggable logging
>  -- ARROW_WITH_BACKTRACE=ON [default=ON]
>  -- Build with backtrace support
>  -- ARROW_WITH_BROTLI=OFF [default=OFF]
>  -- Build with Brotli compression
>  -- ARROW_WITH_BZ2=OFF [default=OFF]
>  -- Build with BZ2 compression
>  -- ARROW_WITH_LZ4=OFF [default=OFF]
>  -- Build with lz4 compression
>  -- ARROW_WITH_SNAPPY=OFF [default=OFF]
>  -- Build with Snappy compression
>  -- ARROW_WITH_ZLIB=ON [default=OFF]
>  -- Build with zlib compression
>  -- ARROW_WITH_ZSTD=OFF [default=OFF]
>  -- Build with zstd compression
>  -- ARROW_WITH_UTF8PROC=OFF [default=ON]
>  -- Build with support for Unicode properties using the utf8proc library
>  -- (only used if ARROW_COMPUTE is ON)
>  -- ARROW_WITH_RE2=ON [default=ON]
>  -- Build with support for regular expressions using the re2 library
>  -- (only used if ARROW_COMPUTE or ARROW_GANDIVA is ON)
>  -- 
>  -- Parquet options:
>  -- 
>  -- PARQUET_MINIMAL_DEPENDENCY=OFF [default=OFF]
>  -- Depend only on Thirdparty headers to build libparquet.
>  -- Always OFF if building binaries
>  -- PARQUET_BUILD_EXECUTABLES=OFF [default=OFF]
>  -- Build the Parquet executable CLI tools. Requires static libraries to be built.
>  -- PARQUET_BUILD_EXAMPLES=OFF [default=OFF]
>  -- Build the Parquet examples. Requires static libraries to be built.
>  -- PARQUET_REQUIRE_ENCRYPTION=OFF [default=OFF]
>  -- Build support for encryption. Fail if OpenSSL is not found
>  -- 
>  -- Gandiva options:
>  -- 
>  -- ARROW_GANDIVA_JAVA=OFF [default=OFF]
>  -- Build the Gandiva JNI wrappers
>  -- ARROW_GANDIVA_STATIC_LIBSTDCPP=OFF [default=OFF]
>  -- Include -static-libstdc++ -static-libgcc when linking with
>  -- Gandiva static libraries
>  -- ARROW_GANDIVA_PC_CXX_FLAGS="" [default=""]
>  -- Compiler flags to append when pre-compiling Gandiva operations
>  -- 
>  -- Advanced developer options:
>  -- 
>  -- ARROW_EXTRA_ERROR_CONTEXT=OFF [default=OFF]
>  -- Compile with extra error context (line numbers, code)
>  -- ARROW_OPTIONAL_INSTALL=OFF [default=OFF]
>  -- If enabled install ONLY targets that have already been built. Please be
>  -- advised that if this is enabled 'install' will fail silently on components
>  -- that have not been built
>  -- Outputting build configuration summary to /tmp/RtmpKCHvic/file92a8867a73e1b/cmake_summary.json
>  -- Configuring done
>  -- Generating done
>  -- Build files have been written to: /tmp/RtmpKCHvic/file92a8867a73e1b
>  + /usr/bin/cmake --build . --target install
>  [ 2%] Creating directories for 'mimalloc_ep'
>  [ 2%] Creating directories for 'jemalloc_ep'
>  [ 3%] Performing download step (download, verify and extract) for 'mimalloc_ep'
>  [ 3%] Performing download step (download, verify and extract) for 'jemalloc_ep'
>  -- Downloading...
>  dst='/tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep-prefix/src/v1.6.4.tar.gz'
>  timeout='none'
>  inactivity timeout='none'
>  -- Using src='https://github.com/microsoft/mimalloc/archive/v1.6.4.tar.gz'
>  -- [download 100% complete]
>  -- jemalloc_ep download command succeeded. See also /tmp/RtmpKCHvic/file92a8867a73e1b/jemalloc_ep-prefix/src/jemalloc_ep-stamp/jemalloc_ep-download-*.log
>  [ 3%] No update step for 'jemalloc_ep'
>  [ 4%] Performing patch step for 'jemalloc_ep'
>  [ 4%] Performing configure step for 'jemalloc_ep'
>  -- Downloading... done
>  -- extracting...
>  src='/tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep-prefix/src/v1.6.4.tar.gz'
>  dst='/tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep-prefix/src/mimalloc_ep'
>  -- extracting... [tar xfz]
>  -- extracting... [analysis]
>  -- extracting... [rename]
>  -- extracting... [clean up]
>  -- extracting... done
>  [ 4%] No update step for 'mimalloc_ep'
>  [ 5%] No patch step for 'mimalloc_ep'
>  [ 6%] Performing configure step for 'mimalloc_ep'
>  -- The C compiler identification is GNU 11.1.0
>  -- The CXX compiler identification is GNU 11.1.0
>  -- Detecting C compiler ABI info
>  -- Detecting C compiler ABI info - done
>  -- Check for working C compiler: /usr/bin/gcc - skipped
>  -- Detecting C compile features
>  -- Detecting C compile features - done
>  -- Detecting CXX compiler ABI info
>  -- Detecting CXX compiler ABI info - done
>  -- Check for working CXX compiler: /usr/bin/g++ - skipped
>  -- Detecting CXX compile features
>  -- Detecting CXX compile features - done
>  -- 
>  -- Library base name: mimalloc
>  -- Build type : release
>  -- Install directory: /tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep/src/mimalloc_ep/lib/mimalloc-1.6
>  -- Build targets : static
>  -- 
>  -- Configuring done
>  -- Generating done
>  CMake Warning:
>  Manually-specified variables were not used by the project:
> CMAKE_EXPORT_NO_PACKAGE_REGISTRY
>  CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY
> – Build files have been written to: /tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep-prefix/src/mimalloc_ep-build
>  [ 7%] Performing build step for 'mimalloc_ep'
>  [ 7%] Building C object CMakeFiles/mimalloc-static.dir/src/stats.c.o
>  [ 14%] Building C object CMakeFiles/mimalloc-static.dir/src/random.c.o
>  [ 21%] Building C object CMakeFiles/mimalloc-static.dir/src/os.c.o
>  [ 28%] Building C object CMakeFiles/mimalloc-static.dir/src/arena.c.o
>  [ 35%] Building C object CMakeFiles/mimalloc-static.dir/src/region.c.o
>  [ 42%] Building C object CMakeFiles/mimalloc-static.dir/src/segment.c.o
>  [ 50%] Building C object CMakeFiles/mimalloc-static.dir/src/page.c.o
>  [ 57%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc.c.o
>  [ 64%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc-aligned.c.o
>  [ 71%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc-posix.c.o
>  [ 78%] Building C object CMakeFiles/mimalloc-static.dir/src/heap.c.o
>  [ 85%] Building C object CMakeFiles/mimalloc-static.dir/src/options.c.o
>  [ 92%] Building C object CMakeFiles/mimalloc-static.dir/src/init.c.o
>  [100%] Linking C static library libmimalloc.a
>  [100%] Built target mimalloc-static
>  [ 8%] Performing install step for 'mimalloc_ep'
>  Consolidate compiler generated dependencies of target mimalloc-static
>  [100%] Built target mimalloc-static
>  Install the project...
>  – Install configuration: "RELEASE"
>  – Installing: /tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep/src/mimalloc_ep/lib/mimalloc-1.6/libmimalloc.a
>  – Installing: /tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep/src/mimalloc_ep/lib/mimalloc-1.6/include/mimalloc.h
>  – Installing: /tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep/src/mimalloc_ep/lib/mimalloc-1.6/include/mimalloc-override.h
>  – Installing: /tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep/src/mimalloc_ep/lib/mimalloc-1.6/include/mimalloc-new-delete.h
>  – Installing: /tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep/src/mimalloc_ep/lib/mimalloc-1.6/cmake/mimalloc-config.cmake
>  – Installing: /tmp/RtmpKCHvic/file92a8867a73e1b/mimalloc_ep/src/mimalloc_ep/lib/mimalloc-1.6/cmake/mimalloc-config-version.cmake
>  [ 9%] Completed 'mimalloc_ep'
>  [ 9%] Built target mimalloc_ep
>  [ 10%] Creating directories for 'aws_c_common_ep'
>  [ 11%] Performing download step (download, verify and extract) for 'aws_c_common_ep'
>  – jemalloc_ep configure command succeeded. See also /tmp/RtmpKCHvic/file92a8867a73e1b/jemalloc_ep-prefix/src/jemalloc_ep-stamp/jemalloc_ep-configure-*.log
>  [ 12%] Performing build step for 'jemalloc_ep'
>  – aws_c_common_ep download command succeeded. See also /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep-stamp/aws_c_common_ep-download-*.log
>  [ 12%] No update step for 'aws_c_common_ep'
>  [ 13%] No patch step for 'aws_c_common_ep'
>  [ 13%] Performing configure step for 'aws_c_common_ep'
>  – aws_c_common_ep configure command succeeded. See also /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep-stamp/aws_c_common_ep-configure-*.log
>  [ 14%] Performing build step for 'aws_c_common_ep'
>  CMake Error at /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep-stamp/aws_c_common_ep-build-RELEASE.cmake:37 (message):
>  Command failed: 2
> 'make'
> See also
> /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep-stamp/aws_c_common_ep-build-*.log
> – stdout output is:
>  [ 0%] Building C object CMakeFiles/aws-c-common.dir/source/allocator.c.o
>  [ 1%] Building C object CMakeFiles/aws-c-common.dir/source/allocator_sba.c.o
>  [ 2%] Building C object CMakeFiles/aws-c-common.dir/source/arch/intel/asm/cpuid.c.o
>  [ 3%] Building C object CMakeFiles/aws-c-common.dir/source/arch/intel/cpuid.c.o
>  [ 4%] Building C object CMakeFiles/aws-c-common.dir/source/arch/intel/encoding_avx2.c.o
>  [ 5%] Building C object CMakeFiles/aws-c-common.dir/source/array_list.c.o
>  [ 6%] Building C object CMakeFiles/aws-c-common.dir/source/assert.c.o
>  [ 7%] Building C object CMakeFiles/aws-c-common.dir/source/byte_buf.c.o
>  [ 8%] Building C object CMakeFiles/aws-c-common.dir/source/cache.c.o
>  [ 9%] Building C object CMakeFiles/aws-c-common.dir/source/codegen.c.o
>  [ 10%] Building C object CMakeFiles/aws-c-common.dir/source/command_line_parser.c.o
>  [ 11%] Building C object CMakeFiles/aws-c-common.dir/source/common.c.o
>  [ 12%] Building C object CMakeFiles/aws-c-common.dir/source/condition_variable.c.o
>  [ 13%] Building C object CMakeFiles/aws-c-common.dir/source/date_time.c.o
>  [ 14%] Building C object CMakeFiles/aws-c-common.dir/source/device_random.c.o
>  [ 14%] Building C object CMakeFiles/aws-c-common.dir/source/encoding.c.o
>  [ 15%] Building C object CMakeFiles/aws-c-common.dir/source/error.c.o
>  [ 16%] Building C object CMakeFiles/aws-c-common.dir/source/fifo_cache.c.o
>  [ 17%] Building C object CMakeFiles/aws-c-common.dir/source/hash_table.c.o
>  [ 18%] Building C object CMakeFiles/aws-c-common.dir/source/lifo_cache.c.o
>  [ 19%] Building C object CMakeFiles/aws-c-common.dir/source/linked_hash_table.c.o
>  [ 20%] Building C object CMakeFiles/aws-c-common.dir/source/log_channel.c.o
>  [ 21%] Building C object CMakeFiles/aws-c-common.dir/source/log_formatter.c.o
>  [ 22%] Building C object CMakeFiles/aws-c-common.dir/source/log_writer.c.o
>  [ 23%] Building C object CMakeFiles/aws-c-common.dir/source/logging.c.o
>  [ 24%] Building C object CMakeFiles/aws-c-common.dir/source/lru_cache.c.o
>  [ 25%] Building C object CMakeFiles/aws-c-common.dir/source/math.c.o
>  [ 26%] Building C object CMakeFiles/aws-c-common.dir/source/memtrace.c.o
>  [ 27%] Building C object CMakeFiles/aws-c-common.dir/source/posix/clock.c.o
>  [ 28%] Building C object CMakeFiles/aws-c-common.dir/source/posix/condition_variable.c.o
>  [ 28%] Building C object CMakeFiles/aws-c-common.dir/source/posix/device_random.c.o
>  [ 29%] Building C object CMakeFiles/aws-c-common.dir/source/posix/environment.c.o
>  [ 30%] Building C object CMakeFiles/aws-c-common.dir/source/posix/mutex.c.o
>  [ 31%] Building C object CMakeFiles/aws-c-common.dir/source/posix/process.c.o
>  [ 32%] Building C object CMakeFiles/aws-c-common.dir/source/posix/rw_lock.c.o
>  [ 33%] Building C object CMakeFiles/aws-c-common.dir/source/posix/system_info.c.o
>  [ 34%] Building C object CMakeFiles/aws-c-common.dir/source/posix/thread.c.o
>  [ 35%] Building C object CMakeFiles/aws-c-common.dir/source/posix/time.c.o
>  [ 36%] Building C object CMakeFiles/aws-c-common.dir/source/priority_queue.c.o
>  [ 37%] Building C object CMakeFiles/aws-c-common.dir/source/process_common.c.o
>  [ 38%] Building C object CMakeFiles/aws-c-common.dir/source/ref_count.c.o
>  [ 39%] Building C object CMakeFiles/aws-c-common.dir/source/resource_name.c.o
>  [ 40%] Building C object CMakeFiles/aws-c-common.dir/source/ring_buffer.c.o
>  [ 41%] Building C object CMakeFiles/aws-c-common.dir/source/statistics.c.o
>  [ 42%] Building C object CMakeFiles/aws-c-common.dir/source/string.c.o
>  [ 42%] Building C object CMakeFiles/aws-c-common.dir/source/task_scheduler.c.o
>  [ 43%] Building C object CMakeFiles/aws-c-common.dir/source/uuid.c.o
>  [ 44%] Building C object CMakeFiles/aws-c-common.dir/source/xml_parser.c.o
>  [ 45%] Linking C static library libaws-c-common.a
>  [ 45%] Built target aws-c-common
>  [ 46%] Building C object tests/CMakeFiles/aws-c-common-tests.dir/test_runner.c.o
>  [ 47%] Building C object tests/CMakeFiles/aws-c-common-tests.dir/alloc_test.c.o
>  [ 48%] Building C object tests/CMakeFiles/aws-c-common-tests.dir/array_list_test.c.o
>  [ 49%] Building C object tests/CMakeFiles/aws-c-common-tests.dir/atomics_test.c.o
>  [ 50%] Building C object tests/CMakeFiles/aws-c-common-tests.dir/byte_buf_test.c.o
> – stderr output is:
>  /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/tests/byte_buf_test.c: In function ‘s_test_buffer_advance’:
>  /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/tests/byte_buf_test.c:228:35: error: ‘arr’ may be used uninitialized [-Werror=maybe-uninitialized]
>  228 | struct aws_byte_buf src_buf = aws_byte_buf_from_empty_array(arr, sizeof(arr));
> |^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>  In file included from /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/tests/byte_buf_test.c:6:
>  /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/include/aws/common/byte_buf.h:556:36: note: by argument 1 of type ‘const void *’ to ‘aws_byte_buf_from_empty_array’ declared here
>  556|AWS_COMMON_API struct aws_byte_buf aws_byte_buf_from_empty_array(const void *bytes, size_t capacity);|
> |^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>  /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/tests/byte_buf_test.c:227:13: note: ‘arr’ declared here
>  227|uint8_t arr[16];|
> |^~~
>  /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/tests/byte_buf_test.c: In function ‘s_test_byte_buf_write_to_capacity’:
>  /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/tests/byte_buf_test.c:551:31: error: ‘buf_storage’ may be used uninitialized [-Werror=maybe-uninitialized]
>  551|struct aws_byte_buf buf = aws_byte_buf_from_empty_array(buf_storage, sizeof(buf_storage));|
> |^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>  In file included from /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/tests/byte_buf_test.c:6:
>  /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/include/aws/common/byte_buf.h:556:36: note: by argument 1 of type ‘const void *’ to ‘aws_byte_buf_from_empty_array’ declared here
>  556|AWS_COMMON_API struct aws_byte_buf aws_byte_buf_from_empty_array(const void *bytes, size_t capacity);|
> |^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>  /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep/tests/byte_buf_test.c:550:13: note: ‘buf_storage’ declared here
>  550|uint8_t buf_storage[5];|
> |^~~~~~~~~~~
>  cc1: all warnings being treated as errors
>  make[5]: *** [tests/CMakeFiles/aws-c-common-tests.dir/build.make:132: tests/CMakeFiles/aws-c-common-tests.dir/byte_buf_test.c.o] Error 1
>  make[4]: *** [CMakeFiles/Makefile2:884: tests/CMakeFiles/aws-c-common-tests.dir/all] Error 2
>  make[3]: *** [Makefile:146: all] Error 2|
> CMake Error at /tmp/RtmpKCHvic/file92a8867a73e1b/aws_c_common_ep-prefix/src/aws_c_common_ep-stamp/aws_c_common_ep-build-RELEASE.cmake:47 (message):
>  Stopping after outputting logs.
> make[2]: *** [CMakeFiles/aws_c_common_ep.dir/build.make:86: aws_c_common_ep-prefix/src/aws_c_common_ep-stamp/aws_c_common_ep-build] Error 1
>  make[1]: *** [CMakeFiles/Makefile2:1112: CMakeFiles/aws_c_common_ep.dir/all] Error 2
>  make[1]: *** Waiting for unfinished jobs....
>  – jemalloc_ep build command succeeded. See also /tmp/RtmpKCHvic/file92a8867a73e1b/jemalloc_ep-prefix/src/jemalloc_ep-stamp/jemalloc_ep-build-*.log
>  [ 15%] Performing install step for 'jemalloc_ep'
>  – jemalloc_ep install command succeeded. See also /tmp/RtmpKCHvic/file92a8867a73e1b/jemalloc_ep-prefix/src/jemalloc_ep-stamp/jemalloc_ep-install-*.log
>  [ 16%] Completed 'jemalloc_ep'
>  [ 16%] Built target jemalloc_ep
>  make: *** [Makefile:146: all] Error 2
>  /tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow
>  + popd
>  PKG_CFLAGS=-I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW
>  PKG_LIBS=-larrow_dataset -lparquet -larrow
>  * 
>  ** libs
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c array.cpp -o array.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c array_from_vector.cpp -o array_from_vector.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c array_to_vector.cpp -o array_to_vector.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c arraydata.cpp -o arraydata.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c arrowExports.cpp -o arrowExports.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c buffer.cpp -o buffer.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c chunkedarray.cpp -o chunkedarray.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c compression.cpp -o compression.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c compute.cpp -o compute.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c csv.cpp -o csv.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c dataset.cpp -o dataset.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c datatype.cpp -o datatype.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c expression.cpp -o expression.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c feather.cpp -o feather.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c field.cpp -o field.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c filesystem.cpp -o filesystem.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c imports.cpp -o imports.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c io.cpp -o io.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c json.cpp -o json.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c memorypool.cpp -o memorypool.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c message.cpp -o message.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c parquet.cpp -o parquet.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c py-to-r.cpp -o py-to-r.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c recordbatch.cpp -o recordbatch.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c recordbatchreader.cpp -o recordbatchreader.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c recordbatchwriter.cpp -o recordbatchwriter.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c scalar.cpp -o scalar.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c schema.cpp -o schema.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c symbols.cpp -o symbols.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c table.cpp -o table.o
>  g++ -std=gnu++11 -I"/usr/include/R/" -DNDEBUG -I/tmp/RtmplFBPlk/R.INSTALL92a7340ef4b51/arrow/libarrow/arrow-3.0.0/include -DARROW_R_WITH_ARROW -I'/home/lime/R/x86_64-pc-linux-gnu-library/4.1/cpp11/include' -D_FORTIFY_SOURCE=2 -fpic -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -c threadpool.cpp -o threadpool.o
>  g++ -std=gnu++11 -shared -L/usr/lib64/R/lib -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o arrow.so array.o array_from_vector.o array_to_vector.o arraydata.o arrowExports.o buffer.o chunkedarray.o compression.o compute.o csv.o dataset.o datatype.o expression.o feather.o field.o filesystem.o imports.o io.o json.o memorypool.o message.o parquet.o py-to-r.o recordbatch.o recordbatchreader.o recordbatchwriter.o scalar.o schema.o symbols.o table.o threadpool.o -larrow_dataset -lparquet -larrow -L/usr/lib64/R/lib -lR
>  installing to /home/lime/R/x86_64-pc-linux-gnu-library/4.1/00LOCK-arrow/00new/arrow/libs
>  ** R
>  ** inst
>  ** byte-compile and prepare package for lazy loading
>  ** help
>  *** installing help indices
>  ** building package indices
>  ** installing vignettes
>  ** testing if installed package can be loaded from temporary location
>  ** checking absolute paths in shared objects and dynamic libraries
>  ** testing if installed package can be loaded from final location
>  ** testing if installed package keeps a record of temporary installation path
>  * DONE (arrow)
> The downloaded source packages are in
>  ‘/tmp/RtmppYM4Sz/downloaded_packages’
> Attaching package: ‘arrow’
> The following object is masked from ‘package:utils’:
> timestamp
> ```



--
This message was sent by Atlassian Jira
(v8.3.4#803005)