darkrwe wrote > Unfortunately I could not see any ".a" file in build/src directory. There > are only shared object files. > > > how can i generate this .archive file for qpid ? or how can i find it ? > > As i know there is no way to generate this .a file from .so file. Because > .so file is linked? > > so i think i need to compile all qpid project but it is not a good way. > for example there are many class dependencies for qpid messaging libraries > that I using.
As for as i know.. If you build with cmake, you will find only .so files in your "build/src" directory. But, if you want ".a" files, there is one way to get them. You can use * make * to build. (I don't recommend this method, because make is already deprecated ) If you build with make, then you will find one hidden directory ".libs/" in your "src/" directory which contains .so and .la files. And if you goto the directories like "qpid/", "qmf/", etc,. you will find ".libs/", inside each directory with .o files, useful to create ".a" library. You can create your own .a library with the object files. If you don't know how to make ".a" library with ".o" files, go through this. http://www.delorie.com/djgpp/v2faq/faq8_22.html <http://www.delorie.com/djgpp/v2faq/faq8_22.html> . All the best. darkrwe wrote > how can i generate this .archive file for qpid ? or how can i find it ? > > As i know there is no way to generate this .a file from .so file. Because > .so file is linked? > > so i think i need to compile all qpid project but it is not a good way. > for example there are many class dependencies for qpid messaging libraries > that I using. > > I also found some tools (ermine , Statifier) But actually they just use > executables. They dont convert .so to .a file or such as operation. > > what do you suggest to me guys ? > > My best Regards. > Emin. -- View this message in context: http://qpid.2158936.n2.nabble.com/Qpid-0-22-Static-archive-a-file-does-not-exist-tp7598234p7598287.html Sent from the Apache Qpid users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
