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/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/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/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/windows-native-authentication.html
To implement the protocol several implementations exist: Windows provides InitializeSecurityContextW and AcceptSecurityContext a open source implemenation of NTML, SPNEGO and Kerberos5 are provided by Heimdal Java6 added SPNEGO support to JGSS which ... Authentication::WindowsAuth: Name authentication_windows_client Requires CLIENT_PLUGIN_AUTH The Windows Native Authentication method is more complex than the other methods and extends the auth protocol as it has to send more data forth and back than the old handshake ...
https://dev.mysql.com/doc/internals/en/getting-source-tree.html
This section describes how to obtain the MySQL source tree, which is currently available on GitHub. For more information about MySQL's move to GitHub, refer to the announcement on the MySQL Release Engineering blog: MySQL on GitHub To obtain the ...
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, ...
Displaying 1 to 10 of 139 total results