Updated some revs
This commit is contained in:
+1
-1
Submodule TeaSpeak updated: 5a740e1853...96bb7ff56f
+5
-3
@@ -77,13 +77,15 @@ make -j`nproc --all` && \
|
||||
make install
|
||||
```
|
||||
|
||||
## MySQL (libmaria.so)
|
||||
## MySQL
|
||||
```shell script
|
||||
export openssl_path="$(realpath ~/openssl-prebuild/linux_amd64)" && \
|
||||
apt-get install -y libncurses5-dev && \
|
||||
git clone https://github.com/mysql/mysql-server.git && cd mysql-server \
|
||||
mkdir build_ && cd build_ && \
|
||||
cmake .. -DBUILD_CONFIG=mysql_release -DWITH_ZLIB=bundled -DDOWNLOAD_BOOST=1 -DWITH_BOOST=`pwd`/boost-library/ -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-lrt" -DCMAKE_INSTALL_PREFIX=`pwd`/../out/ &&
|
||||
make mysqlclient -j 32
|
||||
cmake .. -DBUILD_CONFIG=mysql_release -DWITH_ZLIB=bundled -DDOWNLOAD_BOOST=1 -DWITH_BOOST=`pwd`/boost-library/ -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-lrt" -DWITH_SSL="$openssl_path" -DCMAKE_INSTALL_PREFIX=`pwd`/../out/ &&
|
||||
make -j 32 # This will fail, but the client will be builded
|
||||
cmake --install . # This will fail, but the client should work
|
||||
```
|
||||
You may have to do this before (on error `unsupported reloc 42 against global symbol`):
|
||||
https://bugs.mysql.com/bug.php?id=89391
|
||||
|
||||
Reference in New Issue
Block a user