zzzbbx
zzzbbx

Reputation: 10141

run configure to generate shared libraries [Ubuntu]

I'm running a ./configure script and make to build a library. However, only .a libraries are generated. Is there an option to generate shared libs?

Upvotes: 0

Views: 301

Answers (1)

MattDMo
MattDMo

Reputation: 102862

It's going to depend on the project you're trying to build. Run

./configure --help

to get a list of all options you can pass to ./configure, there may be a --shared option or something similar.

Upvotes: 3

Related Questions