使用code::blocks編譯windows的dll連接庫

由於機子上沒有安裝Visual Studio,因此找到了一種經過code::blocks編譯dll的方式,踩到的坑是code::blocks默認的compiler是32位的,這樣編譯出的dll也是32位的,編譯64位的須要藉助MinGW-w64的toolchain。windows

爲code::blocks配置外部MinGW-w64編譯器能夠參考Compile 64-bit under windows with MinGW-w64函數

使用code::blocks建立一個dll的工程,以下圖:工具

go和next到下一步:ui

選擇咱們上面配置的編譯器:this

Finsh完成,此時已經建好main.h和main.cpp文件,這裏我實現了一個add函數的dll庫,代碼以下:spa

#ifndef __MAIN_H__ #define __MAIN_H__ #include <windows.h>

/* To use this exported function of dll, include this header * in your project. */ #ifdef BUILD_DLL #define DLL_EXPORT __declspec(dllexport)
#else
    #define DLL_EXPORT __declspec(dllimport)
#endif #ifdef __cplusplus extern "C" { #endif

int DLL_EXPORT add(int a, int b); #ifdef __cplusplus } #endif

#endif // __MAIN_H__

main.cpp.net

// a sample exported function

int DLL_EXPORT add(int a, int b) { return a + b; } extern "C" DLL_EXPORT BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { switch (fdwReason) { case DLL_PROCESS_ATTACH: // attach to process // return FALSE to fail DLL load
            break; case DLL_PROCESS_DETACH: // detach from process
            break; case DLL_THREAD_ATTACH: // attach to thread
            break; case DLL_THREAD_DETACH: // detach from thread
            break; } return TRUE; // succesful
}

build以後就能夠生成咱們想要的dll庫。這裏剛開始沒發現compiler位數問題,編譯出的是32位的dll,在x86_64平臺上用會報錯,經過使用Cygwin命令行仿真工具的file命令能夠查看dll的位數,這個是比較簡單的判斷dll位數的方式。命令行

 這裏在安裝MingGW-w64 toolchain時也遇到一個問題,就是使用上述連接提供的MinGW下載連接下載的mingw-w64-installer.exe安裝時會報"cannot download repository.list"的錯誤,因此又找了下發現這個錯誤還挺多人碰到過,官方沒有修復而是給出編譯好的版本,能夠在這裏下載,下載完解壓出來就能夠使用了。code

關於使用編譯好的dll庫能夠參考:Windows環境下建立並使用動態連接庫(CodeBlocks版),另外還能夠使用code::blocks編譯和使用靜態庫:CodeBlocks建立靜態連接庫和使用blog

相關文章
相關標籤/搜索