standard C library and user programs

Programming, for all ages and all languages.
Post Reply
trashman
Posts: 5
Joined: Wed Jul 31, 2019 6:18 am

standard C library and user programs

Post by trashman »

Hello! How does the standard library and user programs link? When compiling in makefile or linker
nullplan
Member
Member
Posts: 1766
Joined: Wed Aug 30, 2017 8:24 am

Re: standard C library and user programs

Post by nullplan »

You are going to have to be a bit more specific. What do you want to know? How linkers work? Or how makefiles work? Or how libraries work?
Carpe diem!
User avatar
iansjack
Member
Member
Posts: 4685
Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK

Re: standard C library and user programs

Post by iansjack »

The standard C library is linked by default, unless you specify otherwise. But if you are talking about user programs for your own OS then, of course, you first need to create your own standard C library.
Post Reply