aayn / library-linking-fun

Teaching myself shared libraries in C/C++.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Library Linking Fun

Do the following:

  1. g++ -Iinclude -fpic lib/add.o -c impl/add.cc
  2. g++ -Iinclude -fpic lib/sub.o -c impl/sub.cc
  3. g++ -shared -o lib/libmymath.so lib/add.o lib/sub.o
  4. g++ -Iinclude -Llib src/main.cpp -o test -lmymath
  5. ./test

About

Teaching myself shared libraries in C/C++.

License:The Unlicense


Languages

Language:C++ 91.5%Language:C 8.5%