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

Sdílet
Vložit

Komentáře • 36

  • @nirlichtman
    @nirlichtman  Před 3 měsíci +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 Před 3 měsíci +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 Před 3 měsíci +9

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

  • @xrehpicx
    @xrehpicx Před 3 měsíci +3

    This is amazingly simple cuz of how u explained it

  • @Crux161
    @Crux161 Před 3 měsíci +5

    Simple and elegant just like it should be 😁

  • @samarthtandale9121
    @samarthtandale9121 Před 2 měsíci

    This is just awesome 🤩🔥🚀

  • @chexo3
    @chexo3 Před 3 měsíci +13

    He does all his Linux tutorials in WSL on Windows
    interesting

    • @pouf-dk3nq
      @pouf-dk3nq Před 3 měsíci +6

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

    • @markjenkins9424
      @markjenkins9424 Před 3 měsíci

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

    • @dylanh333
      @dylanh333 Před měsícem +1

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

  • @EmiLoomistar
    @EmiLoomistar Před 3 měsíci +3

    FInally I understand how it works :D Thankies

  • @dylanh333
    @dylanh333 Před měsícem

    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?

  • @FF-hy4ro
    @FF-hy4ro Před 3 měsíci +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  Před 3 měsíci +1

      Thanks for the feedback! Will keep that in mind for future vids

    • @yash1152
      @yash1152 Před 23 dny

      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"_

  • @marcusk7855
    @marcusk7855 Před 3 měsíci +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 Před 3 měsíci +4

      Its vim :)

    • @nirlichtman
      @nirlichtman  Před 3 měsíci +2

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

  • @guilherme5094
    @guilherme5094 Před 3 měsíci

    👍Man! Thanks!!

  • @pcuser80
    @pcuser80 Před 3 měsíci

    Question : when gcc loader. c you are not using -ldl to load the dlopen library. I get an error whitout.

  • @pouf-dk3nq
    @pouf-dk3nq Před 3 měsíci

    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  Před 3 měsíci

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

    • @pouf-dk3nq
      @pouf-dk3nq Před 3 měsíci

      @@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  Před 3 měsíci +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.

  • @modolief
    @modolief Před 3 měsíci

    SUPERB

  • @__tech_support__
    @__tech_support__ Před 3 měsíci

    Can you make a USB serial monitor that works in the terminal?

  • @rian0xFFF
    @rian0xFFF Před 3 měsíci +3

    Dynamic vs Static lib

    • @gerdsfargen6687
      @gerdsfargen6687 Před 3 měsíci

      Yes please!

    • @nirlichtman
      @nirlichtman  Před 3 měsíci +1

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

  • @hedgehogform
    @hedgehogform Před 3 měsíci

    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.

  • @davidfrischknecht8261
    @davidfrischknecht8261 Před 3 měsíci

    Is there a reason you call them "shared objects" and not "shared libraries"?

    • @caoinismyname
      @caoinismyname Před 2 měsíci

      I think it's because, for Linux, shared libraries end with "so", stands for "shared objects."

  • @samarthtandale9121
    @samarthtandale9121 Před 2 měsíci

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

    • @nirlichtman
      @nirlichtman  Před 2 měsíci

      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.