the Unix archiver utility, used primarily for maintaining static libraries.
0
votes
3answers
67 views
undefined reference to (g++ compilation with static library)
The project files is as this:
source
parser
parser.cpp
parser.hpp
brain
brain.cpp
brain.hpp
I first ran these two commands (pwd source/brain/):
g++ -c brain.cpp -o brain.o
ar ...
1
vote
2answers
45 views
Where can I find the GNU ar file format specification?
I need to access an ar created file, but I cannot find a specification document defining the format. Can someone point me in the right direction?
0
votes
1answer
130 views
How do I extract object files from an iOS library (on a Mac)?
I have a third party iOS library that links and runs fine in my app and in the simulator. I am trying to extract the object files from it in order to integrate it with another piece of third party ...
0
votes
1answer
41 views
Two ways of linking to static libraries
Here are a couple of ways to use functions from a static library, compressed with ar (i.e. libSOMTEHING.a):
ld -Lpath/to/library -lname myapp.o -o result
ld path/to/library/libname.a myapp.o ...
5
votes
1answer
61 views
File IO does not appear to be reading correctly
Disclaimer: this is for an assignment. I am not asking for explicit code. Rather, I only ask for enough help that I may understand my problem and correct it myself.
I am attempting to recreate the ...
0
votes
1answer
51 views
memory leak in a formatting string, correct null termination [closed]
I think I have an issue with terminating my strings, because I'm having trouble displaying them. I'm trying to recreate the unix ar command in C and I almost have -v laid out, but now that I've got ...
1
vote
0answers
76 views
mismatched file size in unix ar command
I'm working on a C program that can read the contents of a unix archive file. I have an interesting bug that maybe I don't understand so I thought I would ask in here.
It seems to me that the file ...
1
vote
1answer
93 views
Using fwrite to store an ar_hdr struct to a file
I'm working on a problem to create my own C version of unix ar. Right now I'm trying to create the header and write it to the file.
Initially, I used a stat struct and printed the contents using an ...
1
vote
1answer
114 views
Android : merging static libraries into single one
I use Android NDK r8 to generate multiple static libraries with include $(BUILD_STATIC_LIBRARY) and I successfully get : lib1.a, lib2.a, lib3.a, etc.
Now I would like to merge these static libraries ...
0
votes
1answer
61 views
Extracting archive file in linker script
I am trying to deal with a problem like the following one:
Assume that I have a library libxyz.a created from:
/* main.c */
int main(void)
{
int a;
}
compiled and archived with:
gcc -c main.c ...
0
votes
1answer
64 views
Compiling on Beagleboard - Fail on AR
I am Compiling on a Beagleboard-Xm, Kernel:
root@beagleboard:~# uname -a
Linux beagleboard 2.6.32 #3 PREEMPT Tue Jul 26 10:56:56 CEST 2011 armv7l unknown
I now try to compile a static library with ...
0
votes
1answer
60 views
Memory overlapping with ld and ar commands
I have linked some texts files with this command:
ld -r -b binary -o resources1.o *.txt
And I get a file resources.o with this content:
nm resources1.o
00000018 D _binary_texto4_txt_end
...
1
vote
1answer
152 views
How to resolve the GHC error “Unknown PEi386 section name `.idata$4' ” on Windows?
I recently found out that instructions I had written to compile HDBC-postgresql on Windows were no longer working with Haskell Platform 2012.2.0.0. The library builds alright, but when attempting to ...
1
vote
0answers
81 views
Autotools: creating a static library from differently compiled sources
I am trying to build a static library from several sources. The problem is that for some sources I have to use different CFLAGS.
In the beginning I thought about creating several noinst_LIBRARIES and ...
6
votes
2answers
380 views
Read/Write files in C
I'm writing a program in C that basically creates an archive file for a given list of file names. This is pretty similar to the ar command in linux. This is how the archive file would look like:
...
1
vote
2answers
319 views
Trying to merge two static libraries
I have the problem that I want to have a static library of my code because I use the code a lot. It's c++ (otherwise a shared would be an other choice). But that code depends on other static libs. Due ...
-4
votes
1answer
189 views
I'm looking for the source code for Archive(ar) in Unix in C [closed]
I'm looking for the source code for Archive(ar) in Unix in C so I can build my own version of an archive that is also compatible with the existing archive in unix
0
votes
0answers
50 views
Validation of the model to the
hey I use validation (ActiveRecord :: Base)
I use gem "dynamic_form".
If someone does not complete the login field is the message błędi and field for entering the login is red. (form generated by ...
1
vote
2answers
332 views
MinGW-w64's ar.exe can't find libraries when trying to build a static library
I've now been trying to get MinGW-w64 to work on my system for several days, mainly because it has a more recent GCC version, but I either set things up wrong or there's some strange problem with ...
3
votes
3answers
76 views
specialized member function lost after linking thru ar
Consider the following minimal example which reproduces a problem in a much bigger project:
spec.h:
#include <iostream>
class A
{
public:
template<typename T>
T test(const ...
2
votes
0answers
237 views
Computing correlation coefficients for an AR(2) process in R
I have a time series problem that I could easily work out manually, only it would take kind of a long time since I have 4 different AR(2) processes and want to calculate at least 20 lags for each.
...
0
votes
1answer
72 views
archive of archive files [duplicate]
Possible Duplicate:
How to merge two “ar” static libraries into one
I have multiple archive file as below
folder1/libfolder1.a
folder2/libfolder2.a
folder3/libfolder3.a
all ...
1
vote
2answers
1k views
LOCAL_SRC_FILES points to a missing file
i'm doing an augemented reality program. i was handed this project and im new to cygwin and android programming. i have to use cygwin to compile one of my cpp file. however when i do a ndk-build on ...
0
votes
3answers
603 views
undefined method class_inheritable_accessor for ActiveRecord::Extensions::SqliteRegexp:Class
Ive recently install the 'ar-extension' gem. After installation when i run rails c or rails s i gets the following error :
...
1
vote
1answer
658 views
linking library for creating static library
I have written some code in Lib_file.h and Lib_file.cpp. I wish to convert this code to a static library. I am able to compile the code (using the command g++ -I <necessary include files> -o ...
4
votes
1answer
235 views
metaio sdk (openGL) brakes font and image rendering
I have 2 activities, activity A in which I have a lot of info displayed (textviews and images) and activity B which is started from activity A, activity B is the Hello Augmented World tutorial ...
0
votes
1answer
88 views
Linking to thin archive on Snow Leopard
I am attempting to link a thin archive that combines two archive libraries to a C program.
I constructed two simple hello world functions and built an archive with the commands:
ar rcs lib1.a ...
0
votes
1answer
173 views
Create AR Marker from image
In these days i'm working with ARToolKit and i'm faced the necessity to create AR Marker from a static image. So, how suggest in a old ARToolKit's newsletter, i'm started to writing my own video ...
0
votes
0answers
160 views
How to convert latitude and longitude to the screen coordinates in iphone sdk?
I am working in a project which uses augmented reality.I am having latitude and longitude of a location and i need to implement a function where in which when i point my device to that location it ...
1
vote
1answer
521 views
g++ creating static library: could not read the symbols archive has no index
I am trying to group a number of SDL utility classes into a static library for C++ using g++. I am using ubuntu linux 11.10 and gcc versión 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3). The version of ar is ...
0
votes
2answers
181 views
Order of objects in a static library
I have a C project using several object files that needs to be linked in a specific order to find all needed symbols.
For example this command works fine (lib2.o depends on lib1.o etc.)
gcc -o ...
1
vote
2answers
201 views
Is it not allowed create a static library without a .c file in it?
I have two files -> fact.h and main.c in the /home/snyp1/new folder. main.c has the main function which calls the fact(int x) function in fact.h. I am creating a .a archive with the ar command ->
...
1
vote
1answer
617 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 ...
1
vote
1answer
115 views
Issue including library C++
I have a very simple C++ file Multiplier.cpp with the corresponding header file, from which I have created a library using the following commands
$ g++ -o Multiplier.o -c Multiplier.cpp
$ ar cr ...
1
vote
2answers
445 views
When making a library on unix, is anything but “ar rcs” necessary?
I have a number of source files I want to agglomerate into a .a file. I make the library with the command
ar rcs libcathat.a thing1.o thing2.o fish.o
I then attempt to link to this library with the ...
0
votes
1answer
363 views
How to use metaio mobile SDK to draw sth. rather than directly load geometric data from files [closed]
Currently, I'm working on one AR software development on iphone and android platform. And I'm new to Metaio SDK... I really don't know how to draw something with OpenGL or somethings else alike. All ...
0
votes
0answers
81 views
undefined reference to <function>
I'm having a problem compiling a c program in Linux Ubuntu . It's a program for an embedded application.
The relevant files in the folder:
bsppublic.h
bsp_ramrun.ld
libbsp_PBFPower.a
main.c
When ...
0
votes
1answer
132 views
Is it possible to mix different versions of gcc and ld?
My environment is arm-linux-androideabi (Android 2.2 on a Toshiba AC100). I have 2 sets of GCC compilers for my environment(installed at separate locations on the device):
4.4.3 (Android NDK on ...
1
vote
1answer
684 views
Undefined reference to my own library
I've created my lib.a file with several
gcc -c file.c -o file.o
then
ar sr lib/libtest.a file1.o file2.o file3.o
confirmed with
ar -t lib/libtest.a
file1.o
file2.o
file3.o
but when I try to ...
3
votes
1answer
283 views
linking a self-registering, abstract factory
I've been working with and testing a self-registering, abstract factory based upon the one described here:
http://stackoverflow.com/a/582456
In all my test cases, it works like a charm, and provides ...
1
vote
1answer
225 views
Can you include a static lib (.a) in another static lib with ar?
Let's say I've got a couple of .o files in a directory that get ar'ed into a static library:
ar cr libstuff.a a.o b.o
In another directory there are a couple of other .o files that need to be ar'ed ...
0
votes
2answers
115 views
g++ combining libraries
So, I'm trying to incorporate the libpthread.a library into my own library. But its giving me linker problems when I try and compile the code that uses it. I compile it by doing the following:
g++ ...
0
votes
0answers
173 views
Making a static library instead of a shared library (.a instead of .so)
First of all, I have all sources for my libraries.
(The other topics on the matter I found on SO were not quite about the same thing)
The only problem is that the command line used to make a shared ...
0
votes
2answers
104 views
Include static lib in shared object?
I would like to compile a bunch of static libs into a shared object. So far I have
g++ -Wl -shared -fPIC -o myshared.so objs/*.o
Where the objs/*.o above contains all the object files extracted ...
1
vote
0answers
188 views
Weird ar linking error
Make the project from scratch (works)
Try to remake without changing any files (doesnt work)
Remove static library
Make again without changing any files (works)
Make again without changing any files ...
1
vote
1answer
199 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
1answer
446 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: ...
1
vote
3answers
1k 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
540 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);
}
...
0
votes
1answer
151 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 ...
