2

Win7でgccを使用して基本的なhellowordwinformアプリケーションをコンパイルしようとしています。

コードは次のとおりです。

/*

  WINHELLO.C

  "Hello, world!", Win32 style.

*/

#include <windows.h>

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);


/*  WinMain(), our entry point  */

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
           LPSTR szCmdLine, int iCmdShow) {
    static char szAppName[] = "winhello";
    HWND        hwnd;
    MSG         msg;
    WNDCLASSEX  wndclass;


    /*  Fill in WNDCLASSEX struct members  */

    wndclass.cbSize         = sizeof(wndclass);
    wndclass.style          = CS_HREDRAW | CS_VREDRAW;
    wndclass.lpfnWndProc    = WndProc;
    wndclass.cbClsExtra     = 0;
    wndclass.cbWndExtra     = 0;
    wndclass.hInstance      = hInstance;
    wndclass.hIcon          = LoadIcon(NULL, IDI_APPLICATION);
    wndclass.hIconSm        = LoadIcon(NULL, IDI_APPLICATION);
    wndclass.hCursor        = LoadCursor(NULL, IDC_ARROW);
    wndclass.hbrBackground  = (HBRUSH) GetStockObject(WHITE_BRUSH);
    wndclass.lpszClassName  = szAppName;
    wndclass.lpszMenuName   = NULL;


    /*  Register a new window class with Windows  */

    RegisterClassEx(&wndclass);


    /*  Create a window based on our new class  */

    hwnd = CreateWindow(szAppName, "Hello, world!",
            WS_OVERLAPPEDWINDOW,
            CW_USEDEFAULT, CW_USEDEFAULT,
            CW_USEDEFAULT, CW_USEDEFAULT,
            NULL, NULL, hInstance, NULL);


    /*  Show and update our window  */

    ShowWindow(hwnd, iCmdShow);
    UpdateWindow(hwnd);


    /*  Retrieve and process messages until we get WM_QUIT  */

    while ( GetMessage(&msg, NULL, 0, 0) ) {
    TranslateMessage(&msg);    /*  for certain keyboard messages  */
    DispatchMessage(&msg);     /*  send message to WndProc        */
    } 


    /*  Exit with status specified in WM_QUIT message  */

    return msg.wParam;
}


/*  Window procedure  */

LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) {
    PAINTSTRUCT ps;
    HDC         hdc;


    /*  Switch according to what type of message we have received  */

    switch ( iMsg ) {
    case WM_PAINT:

    /*  We receive WM_PAINT every time window is updated  */

    hdc = BeginPaint(hwnd, &ps);
    TextOut(hdc, 100, 100, "Hello, world!", 13);
    EndPaint(hwnd, &ps);
    return 0;

    case WM_DESTROY:

    /*  Window has been destroyed, so exit cleanly  */

    PostQuitMessage(0);
    return 0;
    }


    /*  Send any messages we don't handle to default window procedure  */

    return DefWindowProc(hwnd, iMsg, wParam, lParam);
}

私がコンパイラに与えるコマンドはgcc C:\Users\Bobby\Desktop\myfile.c

まあ、それはライブラリを探します:

C:\Users\Bobby\desktop>gcc C:\Users\Bobby\Desktop\myfile.c
C:\Users\Bobby\AppData\Local\Temp\ccT0bq97.o:myfile.c:(.text+0x88): undefined reference to `GetStockObject@4'
C:\Users\Bobby\AppData\Local\Temp\ccT0bq97.o:myfile.c:(.text+0x1db): undefined reference to `TextOutA@20'
collect2: ld returned 1 exit status
PS C:\Users\Scruffy\desktop> .\build.bat

C:\Users\Bobby\desktop>gcc C:\Users\Bobby\Desktop\myfile.c -I Gdi32.lib
C:\Users\Bobby\AppData\Local\Temp\ccylV5js.o:myfile.c:(.text+0x88): undefined reference to `GetStockObject@4'
C:\Users\Bobby\AppData\Local\Temp\ccylV5js.o:myfile.c:(.text+0x1db): undefined reference to `TextOutA@20'
collect2: ld returned 1 exit status
PS C:\Users\Bobby\desktop> C:\MinGW\

私はグーグルをしましたが、これが最初GetStockObject@4にGdi32.libというファイルにあることがわかりました。だから私は自分のハードドライブをMinGWで検索しましたが、見つけることができませんでした。この関数を見つけるためのLibはどこにあり、それにリンクする方法は何ですか?また、私はリンクする必要があると思いますTextOutA@20

4

2 に答える 2

9

この場合、GDI32 に対して明示的にリンクする代わりに、-mwindowsサブシステム オプションを使用する必要があります。

gcc -Wall -mwindows winhello.c -o winhello.exe

ノート:

gcc等。.lib よりも .a ファイルを好むので、.a ファイルを探していたはずですlibgdi32.a。ファイル名をパラメーターとして指定することで、どちらに対してもリンクできます。

gcc src.c /path/to/example1.lib /path/to/libexample2.a

または-l.a ファイルのオプションを使用します。

gcc src.c /path/to/example1.lib -L/path/to -lexample2
于 2012-09-29T10:35:22.087 に答える
0

Windows DLL は、リンカーがエクスポートされた関数への参照を解決するために、いわゆるインポート ライブラリを必要とします。Microsoft は、 Gdi32.lib を含むインポート ライブラリWindows SDK と共に提供しています。このファイルは、エンド ユーザーに配布しないでください。

于 2012-09-29T09:16:57.390 に答える