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

Поділитися
Вставка

КОМЕНТАРІ • 36

  • @nirlichtman
    @nirlichtman  3 місяці тому +25

    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 місяці тому +4

    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 3 місяці тому +9

    Thank you. Much simple way to show, how this work

  • @xrehpicx
    @xrehpicx 3 місяці тому +3

    This is amazingly simple cuz of how u explained it

  • @Crux161
    @Crux161 3 місяці тому +5

    Simple and elegant just like it should be 😁

  • @samarthtandale9121
    @samarthtandale9121 2 місяці тому

    This is just awesome 🤩🔥🚀

  • @EmiLoomistar
    @EmiLoomistar 3 місяці тому +3

    FInally I understand how it works :D Thankies

  • @chexo3
    @chexo3 3 місяці тому +13

    He does all his Linux tutorials in WSL on Windows
    interesting

    • @pouf-dk3nq
      @pouf-dk3nq 3 місяці тому +6

      Its easier to use WSL than setting up a dual boot.

    • @markjenkins9424
      @markjenkins9424 3 місяці тому

      @@pouf-dk3nq True. It's up to the guy. Maybe easier just to use an outright free system though.

    • @dylanh333
      @dylanh333 2 місяці тому +1

      He also does a lot of Windows tutorials, so ¯⁠\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯

  • @FF-hy4ro
    @FF-hy4ro 3 місяці тому +1

    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 місяці тому +1

      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 3 місяці тому

    👍Man! Thanks!!

  • @modolief
    @modolief 3 місяці тому

    SUPERB

  • @marcusk7855
    @marcusk7855 3 місяці тому +2

    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 3 місяці тому +4

      Its vim :)

    • @nirlichtman
      @nirlichtman  3 місяці тому +2

      Indeed Vim, I have a playlist "Vim Tips" with useful info about it

  • @pouf-dk3nq
    @pouf-dk3nq 3 місяці тому

    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  3 місяці тому

      Both at runtime (can be confusing at first), check out the pinned comment

    • @pouf-dk3nq
      @pouf-dk3nq 3 місяці тому

      @@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  3 місяці тому +1

      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.

  • @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?

  • @pcuser80
    @pcuser80 3 місяці тому

    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?

  • @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."

  • @rian0xFFF
    @rian0xFFF 3 місяці тому +3

    Dynamic vs Static lib

    • @gerdsfargen6687
      @gerdsfargen6687 3 місяці тому

      Yes please!

    • @nirlichtman
      @nirlichtman  3 місяці тому +1

      Actually both methods I have shown are dynamic, check out the pinned comment for more info

  • @hedgehogform
    @hedgehogform 3 місяці тому

    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.

  • @samarthtandale9121
    @samarthtandale9121 2 місяці тому

    Which University course in computer would cover these basic thighs like object, library, shared object, etc please suggest ...
    Btw, huge fan 😁😄

    • @nirlichtman
      @nirlichtman  2 місяці тому

      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.