1. 程式人生 > >選擇C runtime 函式庫

選擇C runtime 函式庫

Visual C++ 編譯器提供下列選項,讓我們決定使用哪一個C runtime 函式庫:
/ML Single-Threaded(static)
/MT Multithreaded(static)
/MD Multithreaded DLL(dynamic import library)
/MLd Debug Single-Threaded(static)
/MTd Debug Multithreaded(static)
/MDd Debug Multithreaded DLL(dynamic import library)