Search Results
https://dev.mysql.com/doc/internals/en/changing-configuration-options.html
Configuration using cmake-gui (Windows, Mac OS X, or Linux with cmake-gui installed) From the build directory, issue this command: cmake-gui . The preceding procedure builds with the default configuration, which may not be suitable for your needs.
https://dev.mysql.com/doc/internals/en/running-mysql-test-run-visual-studio.html
To run a debug configuration, change locaton to the mysql-test directory under your build directory and run mysql-test-run.pl: Mac OS X cd mysql-test MTR_VS_CONFIG=Debug perl mysql-test-run.pl options Windows cd mysql-test set MTR_VS_CONFIG=Debug ...
https://dev.mysql.com/doc/internals/en/cmake-howto-quick-release-configuration.html
make Windows (Visual Studio, from the command line) mkdir bld cd bld cmake .. devenv mysql.sln /build relwithdebinfo To create a file containing a log of the compilation, modify the last command as follows: devenv mysql.sln /build relwithdebinfo ...
https://dev.mysql.com/doc/internals/en/compiling-for-different-hardware-achitectures.html
GCC (on Linux) or Sun Studio Use compile option -m32 (force 32-bit build), -m64 (force 64-bit build) Windows, Visual Studio generator Use cmake path_to_source_dir -G "Visual Studio 10 2010 Win64" to compile 64-bit (x64) Mac OS X Use the ...For ...
https://dev.mysql.com/doc/internals/en/error-messages-old-versions.html
Go to the sql directory in a terminal window and type ./add_errmsg N. In practice, no new error messages should be added to error message files for versions of MySQL prior to 5.0.3. Doing so and merging the messages upward would cause error numbers ...
https://dev.mysql.com/doc/internals/en/new-rpms-directory.html
It is a temporary directory used during RPM builds with Linux distributions.
https://dev.mysql.com/doc/internals/en/cmake-howto-quick-debug-configuration.html
-DCMAKE_BUILD_TYPE=Debug make Windows (Visual Studio, from command line) mkdir bld_debug cd bld_debug cmake ..
https://dev.mysql.com/doc/internals/en/debug-only-options.html
Sometimes, it is handy to add an option that is active only in Debug builds. When doing this, keep in mind that tests like IF(WITH_DEBUG) or IF(CMAKE_BUILD_TYPE MATCHES "Debug") do not work as expected: First, although WITH_DEBUG is an alias for ...
https://dev.mysql.com/doc/internals/en/mysql-specific-cmake-macros.html
Example usage: MYSQL_ADD_EXECUTABLE(mysqld ${MYSQLD_SOURCE} \ DESTINATION ${INSTALL_SBINDIR}) MYSQL_ADD_PLUGIN: Build MySQL Plugin MYSQL_ADD_PLUGIN(plugin_name source1...sourceN [STORAGE_ENGINE] [MANDATORY|DEFAULT] [STATIC_ONLY|MODULE_ONLY] ...On ...
https://dev.mysql.com/doc/internals/en/gnu-debugger.html
There are debuggers for Windows and other operating systems, of course don't feel left out just because we're mentioning a Linux tool name! But it happens that we do a lot of things with Linux ourselves, so we happen to know what to say. Once ...