Search



Search Results
Displaying 1 to 10 of 139 total results
https://dev.mysql.com/doc/internals/en/creating-build-directory.html
One nice CMake feature is “out-of-source” build support, which means not building in the source tree, but in a dedicated build directory. The build directory can actually be a subdirectory of the source tree rather than a directory located ...
https://dev.mysql.com/doc/internals/en/running-mysql-test-run-out-of-source.html
When building out of source (see Section 4.4.1, “Create the Build Directory”), use mysql-test-run.pl in the mysql-test directory under the build directory. It is a wrapper script that calls mysql-test-run.pl in the source directory and tells it ...
https://dev.mysql.com/doc/internals/en/packager-friendly-build-options.html
MySQL source distribution contains sources for zlib (compression library), yaSSL (ssl library), libedit, and (in MySQL 5.5 only) readline. MySQL can be compiled using either libraries available on the system or, to minimize external dependencies, ...--Wl,--no-undefined cannot be used at the moment if plugins are built because plugins have direct dependency (use symbols) exported by MySQL ...
https://dev.mysql.com/doc/internals/en/files-in-innodb-sources.html
I'll take each of the 31 InnoDB subdirectories that come with the MySQL 5.0 source code in \innobase (on my Windows directory). The InnoDB source files are the best place to look for information about internals of the file structure that MySQLers ...But when you first look at all the subdirectories and file names you'll wonder: Where Do I Start? It can be ...
https://dev.mysql.com/doc/internals/en/building-with-cmake.html
To see what commands are executed during the compile stage, use this command: make VERBOSE=1 Windows (using "Visual Studio 10 2010" generator) devenv MySQL.sln /build RelWithDebInfo Alternatively, open MySQL.sln and build using the IDE. Unix make ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-build.html
It actually has very little in it, but it's useful, because one of the first things you might want to do with the source code is: compile and link it. The example command line that we could use is shell> ./BUILD/compile-pentium-debug ...When it's ...
https://dev.mysql.com/doc/internals/en/cmake-variables-controlling-plugin-building.html
To build a plugin that is statically compiled into the server (assuming that the plugin supports static build), add -DWITH_<PLUGIN>=1 to the CMake command line. To exclude a plugin from the build, use -DWITHOUT_<PLUGIN>=1 If neither WITH_<PLUGIN> ...Note These aliases do not always work correctly with NDBCLUSTER; you should always use the WITH_NDBCLUSTER option ...
https://dev.mysql.com/doc/internals/en/cmake-build-options-official-mysql.html
To use them, use the -DBUILD_CONFIG=mysql_release CMake option: Unix (Makefiles) mkdir bld cd bld cmake .. -DBUILD_CONFIG=mysql_release make Visual Studio (from the command line) mkdir bld cd bld cmake .. -DBUILD_CONFIG=mysql_release devenv ...Also, ...
https://dev.mysql.com/doc/internals/en/cmake-build-types.html
The build type affects optimization and whether the result of the build is debuggable. CMAKE_BUILD_TYPE is not set when custom compile flags are used (see Section 4.4.6.2, “How to Specify Compilers and Compiler Flags”). RelWithDebInfo ...
https://dev.mysql.com/doc/internals/en/build-directory.html
This directory contains the build switches for compilation on various platforms. The main ones are: alpha ia64 pentium (with and without debug or bdb, etc.) solaris .
Displaying 1 to 10 of 139 total results