mesalink 1.1.0-cratesio

MesaLink is a memory-safe and OpenSSL-compatible TLS library based on Rustls and Ring.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Cross compiling MesaLink

MesaLink added CMake support since 1.0.0. It is recommended to use CMake to cross compile MesaLink.
For example:

```shell
$ sudo apt-get install gcc-arm-linux-gnueabi g++-arm-linux-gnueabi
$ sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
$ sudo apt-get install libc6-armel-cross libc6-dev-armel-cross

$ rustup target add arm-unknown-linux-gnueabi

$ mkdir build && cd build
$ cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/arm-linux-gnueabi.toolchain.cmake ..
$ make
```