Creating a project, from Makefile to static/dynamic libraries in UNIX
- by Sasha
Guys, would you describe a few things about c++ building blocks, on unix.
I want to create an application that links against static libs and dynamic libs (.so).
Question 1: How do I create static library using gcc/g++ ?How do I make my app link against it.
Question 2: How to specify it in the makefile, linking against static and dynamic libs,…