Skip to content

Instantly share code, notes, and snippets.

@davixcky
Created March 1, 2020 21:35
Show Gist options
  • Save davixcky/dc2b704e7430e1e8cee72b3c35b11e85 to your computer and use it in GitHub Desktop.
Save davixcky/dc2b704e7430e1e8cee72b3c35b11e85 to your computer and use it in GitHub Desktop.
Commands for create the library and link to the main.c
gcc mylib.c
ar rcs libmylib.a *.o
gcc main.c -L. -lmylib -o message
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment