Re: Where is the source code for Connector-C v 8?
Posted by: Krzysztof Grzadziel
Date: September 04, 2019 09:03PM

libmysqlclient is a part of MySQL Server source code. You can obtain source code and compile it using following commands:

$ git clone --depth 1 https://github.com/mysql/mysql-server
$ cd mysql-server
$ mkdir build
$ cd build
$ cmake .. -GNinja -DDOWNLOAD_BOOST=1 -DWITH_BOOST=/tmp -DCMAKE_BUILD_TYPE=Release
$ ninja libmysqlclient.a
$ ls -la archive_output_directory/libmysqlclient.a
-rw-rw-r-- 1 kg kg 8,5M wrz 5 04:57 archive_output_directory/libmysqlclient.a

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Where is the source code for Connector-C v 8?
711
September 04, 2019 09:03PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.