У нас вы можете посмотреть бесплатно Creating and Linking Static Libraries on Linux with gcc или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This video gives an introduction to static libraries. It will show you how to create static libraries on Linux using gcc and how to correctly link with them when compiling. One thing is not clearly stated in the video is that when linking statically using the -static option, the linker will look for a static archive (.a) file for the specified library. In some cases, only a shared library (.so) is available on the system. If the corresponding static archive (.a) were not available, then it would not be possible to statically link this library.