程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL內核正確的編譯操作流程

MySQL內核正確的編譯操作流程

編輯:MySQL綜合教程

編譯MySQL內核是我們經常用到的,以下的文章主要是介紹編譯MySQL內核的正確方法,如果你對編譯MySQL內核技術,心存好奇的話,以下的文章將會揭開它的神秘面紗。希望會給你帶來一些幫助在此方面。

關鍵字: MySQL內核 數據庫安全配置 用戶認證模塊 密碼恢復 存儲過程編寫 數據庫索引

內容摘要:

在最新的版本中,windows環境與linux環境下使用一套代碼。本文以mysql-5.1.7作為分析的對象,詳細講解編譯MySQL內核的方法。

在最新的版本中,windows環境與linux環境下使用一套代碼。比如mysql-6.0.4-alpha版本中的INSTALL-WIN-SOURCE文件的描述:

  1. TobuildMySQLonWindowsfromsource,youmustsatisfythe  
  2. followingsystem,compiler,andresourcerequirements:  
  3. *Windows2000,WindowsXP,ornewerversion.WindowsVistais  
  4. notsupporteduntilMicrosoftcertifiesVisualStudio2005on  
  5. Vista.  
  6. *CMake,whichcanbedownloadedfromhttp://www.cmake.org.  
  7. Afterinstalling,modifyyourpathtoincludethecmake  
  8. binary.  
  9. *MicrosoftVisualC++2005ExpressEdition,VisualStudio.Net  
  10. 2003(7.1),orVisualStudio2005(8.0)compilersystem.  
  11. *IfyouareusingVisualC++2005ExpressEdition,youmust  
  12. alsoinstallanappropriatePlatformSDK.Moreinformationand  
  13. linkstodownloadsforvariousWindowsplatformsisavailable  
  14. fromhttp://msdn.microsoft.com/platformsdk/.  
  15. *IfyouarecompilingfromaBitKeepertreeormakingchanges  
  16. totheparser,youneedbisonforWindows,whichcanbe  
  17. downloadedfrom  
  18. http://gnuwin32.sourceforge.net/packages/bison.htm.Download  
  19. thepackagelabeled"Completepackage,excludingsources".  
  20. Afterinstallingthepackage,modifyyourpathtoincludethe  
  21. bisonbinaryandensurethatthisbinaryisaccessiblefrom  
  22. VisualStudio.  
  23. *Cygwinmightbenecessaryifyouwanttorunthetestscript  
  24. orpackagethecompiledbinariesandsupportfilesintoaZip  
  25. archive.(Cygwinisneededonlytotestorpackagethe  
  26. distribution,nottobuildit.)Cygwinisavailablefrom  
  27. http://cygwin.com.  
  28. *3GBto5GBofdiskspace. 

通過這樣的方法,生成項目文件,從而可以通過vs工具進行編譯。在先前的版本中,windows下的代碼和linux下的代碼是兩個壓縮包,比如windows下的一個軟件包名為,mysql-5.1.7-beta-win-src.zip。

詳細講解如何編譯MySQL內核:這裡我選擇5.1.7作為分析的對象。

安裝代碼的步驟:

1.解壓縮文件包mysql-5.1.7-beta-win-src.zip。

2.使用vs2003打開項目文件mysql.sln。

3.設置mysqld項目為啟動項目。

4.在mysqld的屬性頁設置命令參數為:--console。這樣就可以用debug方式調試代碼了。

配置命令參數

5.設置斷點,比如查詢的總入口是handle_select函數。

6.編譯mysql項目,將會在mysql-5.1.7-betaclient_debug目錄下生成mysql.exe。

7.使用“啟動新實例”或者“進入單步執行新實例”進行調試。

執行調試操作

8. mysql-5.1.7-betaclient_debug目錄下生成mysql.exe,執行語句,將會執行到斷點進行調試。

進入調試狀態

9.相應的數據文件,見mysql-5.1.7-betadata目錄。

上述的相關內容就是對詳細講解如何編譯MySQL內核的描述,希望會給你帶來一些幫助在此方面。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved