Craig
Craig

Reputation: 402

apxs Not Generating .so file?

I'm trying to install Apache mod_xsendfile on a CentOS machine.

However, when I run:

apxs -c mod_xsendfile.c

no .so file is output. Instead it generates mod_xsendfile.la, mod_xsendfile.o, mod_xsendfile.slo, and mod_xsendfile.lo.

I can't understand why no .so file is generated.

Upvotes: 4

Views: 557

Answers (1)

Hans Z.
Hans Z.

Reputation: 53918

it's in .libs, check:

ls -l .libs/*.so

Upvotes: 6

Related Questions