I need to build a hello world function into a dynamic library. I’m coding in C language on linux.
Can anyone help with some sample code doing that? And also for linking against the generated library?
I need to build a hello world function into a dynamic library. I’m coding
Share
First compile files to object code
-fPICmeans that it will produce position independent code.