Generic Build Instructions
The instructions on this page will help you compile MariaDB from source. Links to more complete instructions for specific platforms can be found on the source page.
First, get a copy of the MariaDB source.
Next, prepare your system to be able to compile the source.
If you don't want to run MariaDB as yourself, then you should create a mysql user. The example below uses this user.
Using cmake
MariaDB 5.5 and above is compiled using cmake.
It is recommended to create a build directory beside your source directory
mkdir build-mariadb
cd build-mariadbAfter updating the MariaDB repository, make sure to thoroughly clean up old artifacts such as CMake configured files if you have previously built MariaDB.
In the base repository run:
git clean -xffd && git submodule foreach --recursive git clean -xffdYou can configure your build simply by running cmake without any special options, like
cmake ../serverwhere server is where you installed MariaDB. If you are building in the source directory, just omit ../server.
If you want it to be configured exactly as a normal MariaDB server release is built, use
cmake ../server -DBUILD_CONFIG=mysql_releaseThis will configure the build to generate binary tarballs similar to release tarballs from downloads.mariadb.org. Unfortunately this doesn't work on old platforms, like OpenSuse Leap 15.0, because MariaDB binary tarballs are built to minimize external dependencies, and that needs static libraries that might not be provided by the platform by default, and would need to be installed manually.
To do a build suitable for debugging use:
cmake ../server -DCMAKE_BUILD_TYPE=DebugBy default, MariaDB is compiled with the -Werror flag, which causes compiling to abort
if there is a compiler warning. You can disable that by configuring with-DMYSQL_MAINTAINER_MODE=OFF.
cmake ../server -DCMAKE_BUILD_TYPE=Debug -DMYSQL_MAINTAINER_MODE=OFF.All cmake configuration options for MariaDB can be displayed with:
cmake ../server -LHTo build and install MariaDB after running cmake use
cmake --build .
sudo cmake --install .If the commands above fail, you can enable more compilation information by doing:
cmake --build . --verboseIf you want to generate a binary tarball, run
cpackUsing BUILD Scripts
There are also BUILD scripts for the most common systems for those that doesn't want to dig into cmake options. These are optimized for in source builds.
The scripts are of type compile-#cpu#-how_to_build. Some common scripts:
compile-pentium64
Compile an optimized binary optimized for 64 bit pentium (works also for amd64)
compile-pentium-debug
Compile a debug binary optimized for 64 bit pentium
compile-pentium-valgrind-max
Compile a debug binary that can be used with valgrind to find wrong memory accesses and memory leaks. Should be used if one want's to run the mysql-test-run test suite with the --valgrind option
Some common suffixes used for the scripts:
32
Compile for 32 bit cpu's
64
Compile for 64 bit cpu's
-max
Enable (almost) all features and plugins that MariaDB supports
-gprof
binary is compiled with profiling (gcc --pg)
-gcov
binary is compiled with code coverage (gcc -fprofile-arcs -ftest-coverage)
-valgrind
The binary is compiled for debugging and optimized to be used with valgrind.
-debug
The binary is compiled with all symbols (gcc -g) and the DBUG log system is enabled.
All BUILD scripts support the following options:
-h, --help
Show this help message.
-n, --just-print
Don't actually run any commands; just print them.
-c, --just-configure
Stop after running configure. Combined with --just-print shows configure options.
--extra-configs=xxx
Add this to configure options
--extra-flags=xxx
Add this C and CXX flags
--extra-cflags=xxx
Add this to C flags
--extra-cxxflags=xxx
Add this to CXX flags
--verbose
Print out full compile lines
--with-debug=full
Build with full debug(no optimizations, keep call stack).
A typical compilation used by a developer would be:
shell> ./BUILD/compile-pentium64-debugThis configures the source for debugging and runs make. The server binary will be sql/mariadbd or sql/mysqld.
Starting MariaDB for the First Time
After installing MariaDB (using sudo make install), but prior to starting MariaDB for the first time, one should:
Ensure the directory where you want MariaDB to store it's data is owned by the
mariadbuser (if the user doesn't exist, you'll need to create it)Create a MariaDB configuration config file (
/.my.cnfor/etc/my.cnf) with the configuration options you desire. A suggested minimum configuration file, to specify where you want your data to be stored, would be:[mariadbd] datadir=/usr/local/mariadb/data/run the mariadb-install-db script to generate the needed system tables
# The following assumes that the 'mariadb' user exists and that we installed MariaDB
# in /usr/local/mariadb
chown -R mariadb /usr/local/mariadb/
cd /usr/local/mariadb/
./scripts/mariadb-install-db --user=mariadb
/usr/local/mariadb/bin/mariadb-safe --user=mariadb &If needed, you can also use the --datadir=/usr/local/mariadb/data/ options with mariadbd-install-db and mariadbd-safe
Testing MariaDB
If you want to test your compiled MariaDB, you can do either of:
Run unit tests:
cmake --build . --target testOr run mtr tests:
mysql-test/mysql-test-run --forceEach of the above are run from the build directory. There is no need to 'make install/cmake --install .' MariaDB prior to running them.
For extensive testing or debugging of MariaDB using real application data and workloads, consider starting and running MariaDB directly from the source directory instead of installing it with sudo make install. For details, refer to Running MariaDB from the Source Directory.
Increasing Version Number or Tagging a Version
If you have made code changes and want to increase the version number or tag our version with a specific tag you can do this by editing the VERSION file. Tags are shown when running the 'mariadbd --version' command.
Non-ascii Symbols
MariaDB builds with readline; using an alternative such as Editline may result in problems with non-ascii symbols.
Post-install Tasks
This page is licensed: CC BY-SA / Gnu FDL
Last updated
Was this helpful?

