Английская Википедия:Auto-linking

Материал из Онлайн справочника
Версия от 10:51, 4 февраля 2024; EducationBot (обсуждение | вклад) (Новая страница: «{{Английская Википедия/Панель перехода}} {{distinguish|Automatic hyperlinking}} '''Auto-linking''' is a mechanism for automatically determining which libraries to link to while building a C, C++ or Obj-C program. It is activated by means of <code>#pragma comment(lib, <name>)</code> statements in the header files of the library, or <code>@import <name></code>, depending on the compiler. Most Windows compilers support aut...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)
Перейти к навигацииПерейти к поиску

Шаблон:Distinguish

Auto-linking is a mechanism for automatically determining which libraries to link to while building a C, C++ or Obj-C program. It is activated by means of #pragma comment(lib, <name>) statements in the header files of the library, or @import <name>, depending on the compiler.

Most Windows compilers support auto-linking, as does Clang, while GCC does not support auto-linking.[1]

References

External links