You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@arrow.apache.org by "Robert Nishihara (JIRA)" <ji...@apache.org> on 2018/10/19 01:01:00 UTC

[jira] [Created] (ARROW-3559) Statically link libraries for plasma_store_server executable.

Robert Nishihara created ARROW-3559:
---------------------------------------

             Summary: Statically link libraries for plasma_store_server executable.
                 Key: ARROW-3559
                 URL: https://issues.apache.org/jira/browse/ARROW-3559
             Project: Apache Arrow
          Issue Type: Improvement
          Components: Plasma (C++)
            Reporter: Robert Nishihara
            Assignee: Robert Nishihara


{code:java}
cd ~
git clone https://github.com/apache/arrow
cd arrow/cpp
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DARROW_PYTHON=on -DARROW_PLASMA=on ..
make -j16
sudo make install

cd ~
cp arrow/cpp/build/release/plasma_store_server .
mv arrow arrow-temp

# Try to start the store
./plasma_store_server -s /tmp/store -m 1000000000{code}
The last line crashes with
{code:java}
./plasma_store_server: error while loading shared libraries: libplasma.so.12: cannot open shared object file: No such file or directory{code}
For usability, it's important that people can copy around the plasma store executable and run it.

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)