Skip to main content

All Questions

Tagged with
1 vote
1 answer
93 views

How to add already created .a file while creating .a file

can anyone tell how can I include already existing .a file while creating .a with this? ar rcs libcrypt.a I need to add libssl.a and libcrypto.a files together into a libcrypt.a file. Can you help ...
Kumaran Smart 7697's user avatar
0 votes
1 answer
82 views

How to force archiver (ar) to produce archive that behaves identically to object file?

I use a rather involved approach to object allocation using a "catalog" approach. The code generates a catalog object (global static map) which is populated by base pointers, which point to derived ...
doc07b5's user avatar
  • 620
20 votes
1 answer
17k views

How to observe the content of static lib in mac OS?

I create a static library project in my xCode and build a .a named mylib.a. There some code (.m files) and another static lib file named common.a to inform the static library nylib.a. But I doubt ...
qiushuitian's user avatar
  • 1,301
4 votes
1 answer
2k views

Merge multiple static libraries into one GCC scons

I'm building this library, libmyproject.a I want it to include several other static libraries (libone.a and libtwo.a), so that the application that links with libmyproject doesn't have to link with ...
Florin's user avatar
  • 2,931