Search Results
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/command-invocation-syntax.html
To clean out old object files and cached information before reconfiguring and rebuilding: Autotools: make clean rm config.cache CMake (Unix): make clean rm CMakeCache.txt CMake (Windows): devenv MySQL.sln /clean del CMakeCache.txt . is not your ...
https://dev.mysql.com/doc/internals/en/docs-directory.html
Binary and source distributions include some pre-formatted documentation files, such as the MySQL Reference manual in Info format (for Unix) or CHM format (for Windows).
https://dev.mysql.com/doc/internals/en/myisam-introduction.html
if you use Windows, you might find the files in the \mysql\data\test\ directory. For details, see the source files /myisam/mi_statrec.c (for fixed format), /myisam/mi_dynrec.c (for dynamic format), and /myisam/mi_packrec.c (for packed format). MySQL ...