Tagged Questions

the Unix archiver utility, used primarily for maintaining static libraries.

learn more… | top users | synonyms

6
votes
4answers
4k views

Linking static libraries to other static libraries

I have a small piece of code that depends on many static libraries (a_1-a_n). I'd like to package up that code in a static library and make it available to other people. My static library, lets call ...
5
votes
2answers
220 views

Is using --start-group and --end-group when linking faster than creating a static library?

If one builds static libraries in one's build scripts and one wants to use those static libraries in linking the final executable, the order one mentions the .a files is important: g++ main.o hw.a ...
4
votes
1answer
2k views

How to merge two “ar” static libraries into one

I have 2 static linux libraries, created by ar cr, libabc.a and libxyz.a. I want to merge them into one static library libaz.a. How can I do this. I want to create a merged static library, not to ...
3
votes
3answers
680 views

Static library having object files with same name (ar)

A bit context. Let's say I have source files, which need to end up in a static library. Let's say there are two cpp files a.cpp and a.cpp located in two different subdirectories. Something like this: ...
2
votes
1answer
1k views

Installation failed due to invalid APK file?

I just downloaded an example program of AR in metaio. When I run or build the program. The error displayed: Installation failed due to invalid APK file! [2011-08-29 21:15:30 - Example_SDK] Please ...
2
votes
5answers
215 views

`ar` library override timestamp

the .a archive format header requires a timestamp. This has led to countless headaches when I rebuild a static library, mainly because I can't exactly reproduce the original binary. For example ...
2
votes
1answer
857 views

libtool vs ar for creating a static library (xcode linker)

Creating a static library on Mac 10.5 with xcode via libtool and with ar via the command line both generate a libMainProject.a file however, when trying to use the one generate by libtool to link into ...
1
vote
3answers
329 views

Loading markers from outside the app bundle in iOS with Qualcomm AR (QCAR)

Does anyone know if it is possible to load the config.xml and qcar-resources.dat (The files that contain the marker info) from outside the app bundle? According to the official forums and ...
1
vote
1answer
43 views

ar introduces undefined reference

I'm trying to figure out how to use static libraries, but the most trivial example fails: //foo.c int func(int i) { return i+1; } //main.c int func(int i); int main() { return func(41); } ...
1
vote
1answer
45 views

ar command line length

I have an extremely long command line given to ar (android ar exactly) by bjam, and ar just corrupts a file path and complains that file does not exist. Is there a way to make ar allocate a bigger ...
1
vote
1answer
405 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 ...
1
vote
1answer
53 views

Clobber existing file with ar

When using ar with an archive name that already exists, this message is generated: + ar rcs /tmp/libcpfs.a.3nbsv /tmp/cpfs.c.ERGsn /tmp/log.c.1lk6G ar: /tmp/libcpfs.a.3nbsv: File format not ...
1
vote
1answer
140 views

static library creation

in general we use ar rcs command to create a static library on unix. what does the flag 's' mean over here man page says Do not generate an archive symbol table. This can speed up building ...
1
vote
1answer
132 views

glibc version used while building .a file

Is there a way to find out from .a file what version of glibc is expected or was used when building the .a?
1
vote
1answer
60 views

Improve ar archiving performance

I have a project with a huge amount of auto-generated code, which we build into a static library before linking into the final executable. We use gcc/gnat 5.04a There are so many files, we have to ...
0
votes
1answer
41 views

Screencast of my AR iOS App

I'm working on an app which combines the camera with some OpenGL. The usual "AR" thing. I know how to record the camera, I know how to record OpenGL, I've just failed with a thousand of different ...
0
votes
1answer
21 views

order of object files in library

I know that when linking to multiple static libraries or object files, the order matters (dependent libraries should be listed before their dependencies). I want to know if, when creating a library ...
0
votes
0answers
48 views

Unity, String AR and Movie Texture

I have purchased "Augmented Reality (camera and movie textures)" on http://www.prime31.com/unity/. But when I want to make it work I get this error: http://cl.ly/0e1v26032V1Q1G2V2J43. Am I doing ...
0
votes
0answers
36 views

simple_form, bug with :has_many :through relation?

I have 3 models like these: class CertificatorBtwInstructor < ActiveRecord::Base belongs_to :certificator belongs_to :instructor # other code ... end class Certificator < ...
0
votes
1answer
40 views

Yii related blank instance in view

Propose we has 3 AR tables - product - property - property_value Each table has relations to others, so property table have foreign key to product table, therefore property_value table have foreign ...
0
votes
1answer
60 views

Mac Lion cannot create library using 'ar', 'no symbols'

I have C++ source code in IO.h and IO.cpp and want to make a static library libvcf.a . Then I use the following command: g++ -c IO.cpp No problem. But, ar -r libvcf.a IO.o /usr/bin/ranlib: ...
0
votes
1answer
49 views

Trouble compiling a program using an archive (.a)

When I try to compile my file using a library (.a), I get 'fatal error: URLInputStream.h: No such file or directory compilation terminated. '. I'm still pretty new to C++, and this seems so simple but ...
0
votes
2answers
74 views

Native toolchain issue on Macos 10.6.8 (Snow Leopard)

Below is the description of the issue. I marked it all as a code to avoid the implicit formatting that StackOverflow does. That is pretty annoying to have to deal with the Wiki-like markup language ...
0
votes
1answer
58 views

app with wikitude, change the view

I am an IOS programmer and added this SDK to my application which has a tab bar that shows a view with a button showing the wikitude camera, I would like to know how I could go back to my last view ...
0
votes
0answers
42 views

Executable file size depends on object file content

I have many source code files (C) that I archive (using AR) into a static library for a later use when creating an executable. There are two ways to do so: 1.Add all objects (.o) files into an ...
0
votes
1answer
207 views

Creating a .deb with Apache Ant and without dpkg

I'm trying to create a buildfile for creating .deb installation files. So far, so fine. My goal is to avoid dpkg, so that the build can be done from any plattform. Now that I created all the ...
0
votes
1answer
194 views

How do I tell `gar` or `ar` to output `elf32-i386` output?

When I look at the help output from gar -h, it tells me: [...] gar: supported targets: elf64-x86-64 elf32-i386 a.out-i386-linux [...] How can I instruct gar to create an elf32-i386 output?
0
votes
2answers
189 views

Possible to use a .dll on Linux

Question: Is it possible to compile a program on linux using a .dll file? Where this is going: This .dll will be used to write a php extension to some proprietary software from a third party. ...