Тёмный

Making Simple Shared Object (.so) in C on Linux 

Nir Lichtman
Подписаться 44 тыс.
Просмотров 7 тыс.
50% 1

Наука

Опубликовано:

 

13 фев 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 36   
@nirlichtman
@nirlichtman 4 месяца назад
To avoid confusion between static and dynamic: I will clarify that both methods I have shown are dynamic (loaded on runtime and not included in the binary), the difference between them is when the library is loaded, the first method causes the operating system to load the library when the program starts and the second method enables a program to load a library whenever it wants (after being started)
@mohitkumar-jv2bx
@mohitkumar-jv2bx 3 месяца назад
Man this channel is Gold. I know i am almost never going to write C. But knowing all these things helps understanding things better. Thanks again 🙏
@GameBacardi
@GameBacardi 4 месяца назад
Thank you. Much simple way to show, how this work
@Crux161
@Crux161 4 месяца назад
Simple and elegant just like it should be 😁
@xrehpicx
@xrehpicx 4 месяца назад
This is amazingly simple cuz of how u explained it
@samarthtandale9121
@samarthtandale9121 3 месяца назад
This is just awesome 🤩🔥🚀
@chexo3
@chexo3 4 месяца назад
He does all his Linux tutorials in WSL on Windows interesting
@pouf-dk3nq
@pouf-dk3nq 4 месяца назад
Its easier to use WSL than setting up a dual boot.
@markjenkins9424
@markjenkins9424 4 месяца назад
@@pouf-dk3nq True. It's up to the guy. Maybe easier just to use an outright free system though.
@dylanh333
@dylanh333 2 месяца назад
He also does a lot of Windows tutorials, so ¯⁠\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯
@EmiLoomistar
@EmiLoomistar 4 месяца назад
FInally I understand how it works :D Thankies
@FF-hy4ro
@FF-hy4ro 4 месяца назад
great content, specially how you casually use ldd and ltrace and even though I have been coding in C for quite some time already you just taught me something new. Thank you! One small tip: the font size is too small, specially if watching it while commuting on a handheld device. Try watching it at 240p and that will tell you how somebody without the gift of perfect eyesight will see it in a moving vehicle. But again, the content is superb, thanks again!
@nirlichtman
@nirlichtman 3 месяца назад
Thanks for the feedback! Will keep that in mind for future vids
@yash1152
@yash1152 Месяц назад
you shouldn't watch/read any thing in a moving vehicle in the first place _"how somebody without the gift of perfect eyesight will see it in a moving vehicle"_
@guilherme5094
@guilherme5094 4 месяца назад
👍Man! Thanks!!
@dylanh333
@dylanh333 2 месяца назад
Can you do a video covering dynamic linking on Windows, and how it differs (and is also similar to) Linux? One thing I'm slightly perplexed by with Windows is .lib files - how do they differ in function and purpose to .h files?
@pouf-dk3nq
@pouf-dk3nq 4 месяца назад
Nice, the two methods look very similar, as far as i understand the first one calls the object during compile time, and the 2nd one during runtime ? Good to know !
@nirlichtman
@nirlichtman 4 месяца назад
Both at runtime (can be confusing at first), check out the pinned comment
@pouf-dk3nq
@pouf-dk3nq 4 месяца назад
@@nirlichtman i see, the 2nd method seems more appropriate to use because you can specify how to load the library (in case its very big) as you can call only specific functions, for example you have a program where its not always necessary to load a shared object in which you can also specify lazy loading, i assume you didn't bother check the return values in your code to make the video more simple, but if you're gonna load the entire library anyways, why not just use the first method. Are there other implications of this ?
@nirlichtman
@nirlichtman 4 месяца назад
The first method is indeed more popular and fits in the simple case demonstrated in the video but there are some cases where the second method could be used for example if you want to load the shared object only in a specific flow in the code. Another advantage of the first method is that the shared object dependency can clearly be seen when running ldd - making it more user friendly.
@marcusk7855
@marcusk7855 4 месяца назад
Really like the tutorials so far. Is that emacs that you are using? I've never actually taken the time to learn to use it but it seems very efficient.
@CJ1337HF
@CJ1337HF 4 месяца назад
Its vim :)
@nirlichtman
@nirlichtman 4 месяца назад
Indeed Vim, I have a playlist "Vim Tips" with useful info about it
@modolief
@modolief 4 месяца назад
SUPERB
@pcuser80
@pcuser80 4 месяца назад
Question : when gcc loader. c you are not using -ldl to load the dlopen library. I get an error whitout.
@__tech_support__
@__tech_support__ 3 месяца назад
Can you make a USB serial monitor that works in the terminal?
@hedgehogform
@hedgehogform 4 месяца назад
Thanks! Now I can finally execute my evil plans to make the user require a .so file or else they cannot open my app. Why not make it harder for everyone? I like suffering.
@rian0xFFF
@rian0xFFF 4 месяца назад
Dynamic vs Static lib
@gerdsfargen6687
@gerdsfargen6687 4 месяца назад
Yes please!
@nirlichtman
@nirlichtman 4 месяца назад
Actually both methods I have shown are dynamic, check out the pinned comment for more info
@davidfrischknecht8261
@davidfrischknecht8261 3 месяца назад
Is there a reason you call them "shared objects" and not "shared libraries"?
@caoinismyname
@caoinismyname 3 месяца назад
I think it's because, for Linux, shared libraries end with "so", stands for "shared objects."
@samarthtandale9121
@samarthtandale9121 3 месяца назад
Which University course in computer would cover these basic thighs like object, library, shared object, etc please suggest ... Btw, huge fan 😁😄
@nirlichtman
@nirlichtman 3 месяца назад
Probably CS Operating Systems course would cover some of these stuff, but the best way to truly learn this is hands on coding along with reading the docs/man pages.
Далее
The Importance of Resource Cleanup in C
7:02
Просмотров 6 тыс.
Making Simple Graphical Linux Distro from Scratch
17:19
The Importance of Error Handling in C
8:18
Просмотров 29 тыс.
30 Beginner Vim Commands in 7 Minutes
7:13
Просмотров 9 тыс.
Native Applications: What, Why, and How?
1:01:40
Просмотров 5 тыс.
why do header files even exist?
10:53
Просмотров 360 тыс.
Making Minimalist HTTPS Server in C on Linux
16:11
Просмотров 16 тыс.
How to write your own code libraries in C.
9:57
Просмотров 134 тыс.
Why Are Open Source Alternatives So Bad?
13:06
Просмотров 433 тыс.
ЛУЧШИЙ ПОВЕРБАНК ОТ XIAOMI
0:39
Просмотров 15 тыс.
Эпоха Intel и AMD заканчивается?!
0:46
Bardak ile Projektör Nasıl Yapılır?
0:19
Просмотров 6 млн
keren sih #iphone #apple
0:16
Просмотров 1,6 млн