Skip to content
Snippets Groups Projects
Commit b00087ed authored by Bartosz Przydatek's avatar Bartosz Przydatek Committed by Tink Team
Browse files

Fixing C++ installation instructions.

PiperOrigin-RevId: 197889804
GitOrigin-RevId: 9c3a38ad86da03f0180fc87082bf7107c6d537fd
parent 28c9ebbe
Loading
...@@ -59,15 +59,17 @@ To install Tink from the source code, the following prerequisites must be instal ...@@ -59,15 +59,17 @@ To install Tink from the source code, the following prerequisites must be instal
```sh ```sh
bazel build cc:libtink.so bazel build cc:libtink.so
bazel build tink_headers tink_deps_headers bazel build cc:tink_headers cc:tink_deps_headers
TARGET_DIR="/usr/local" TARGET_DIR="/usr/local"
cp bazel-bin/cc/libtink.so $TARGET_DIR/lib/ mkdir -p $TARGET_DIR/lib
tar xfv bazel-genfiles/cc/tink_headers.tar -C $TARGET_DIR/include/ mkdir -p $TARGET_DIR/include
tar xfv bazel-genfiles/cc/tink_deps_headers.tar -C $TARGET_DIR/include/ sudo cp bazel-bin/cc/libtink.so $TARGET_DIR/lib/
sudo tar xfv bazel-genfiles/cc/tink_headers.tar -C $TARGET_DIR/include/
sudo tar xfv bazel-genfiles/cc/tink_deps_headers.tar -C $TARGET_DIR/include/
``` ```
3. If in Step 2 you specified a system directory (for example, `/usr/local`) as the `TARGET_DIR`, 3. If in Step 2 you specified a system directory (for example, `/usr/local`)
then run ldconfig to configure the linker. For example: as the `TARGET_DIR`, then run ldconfig to configure the linker. For example:
```sh ```sh
sudo ldconfig sudo ldconfig
...@@ -78,8 +80,8 @@ To install Tink from the source code, the following prerequisites must be instal ...@@ -78,8 +80,8 @@ To install Tink from the source code, the following prerequisites must be instal
`~/mydir/lib`) to two environment variables: `~/mydir/lib`) to two environment variables:
```sh ```sh
export LIBRARY_PATH=$LIBRARY_PATH:~/mydir/lib export LIBRARY_PATH=$LIBRARY_PATH:$TARGET_DIR/lib
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/mydir/lib export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$TARGET_DIR/lib
``` ```
#### Validate your installation #### Validate your installation
...@@ -92,7 +94,7 @@ To validate the installation compile and run [`hello_world.cc`](https://github.c ...@@ -92,7 +94,7 @@ To validate the installation compile and run [`hello_world.cc`](https://github.c
cd /tmp cd /tmp
wget https://raw.githubusercontent.com/google/tink/master/examples/helloworld/cc/hello_world.cc wget https://raw.githubusercontent.com/google/tink/master/examples/helloworld/cc/hello_world.cc
wget https://raw.githubusercontent.com/google/tink/master/examples/helloworld/cc/aes128_gcm_test_keyset_json.txt wget https://raw.githubusercontent.com/google/tink/master/examples/helloworld/cc/aes128_gcm_test_keyset_json.txt
cat "some message to be encrypted" > plaintext.txt echo "some message to be encrypted" > plaintext.txt
``` ```
2. Compile the source code. 2. Compile the source code.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment