-3

I have some c files and .h header files .now I have to make .so file from this .c and .h file how can I do this?

  • Visit [this link](http://stackoverflow.com/questions/14884126/build-so-file-from-c-file-using-gcc-command-line) – 0xF1 Nov 14 '13 at 04:33

1 Answers1

0
gcc -shared -o libfoo.so foo.o
cppcoder
  • 22,227
  • 6
  • 56
  • 81