Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
7k views

How do i compile a static library (fat) for armv6, armv7 and i386

I know this question has been posed several times, but my goal is slightly different with regard to what I have found searching the web. Specifically, I am already able to build a static library for ...
3
votes
3answers
3k views

Building iPhone static library for armv6 and armv7 that includes another static library

I have an Xcode project that has a "master" static library target, that includes/links to a bunch of other static libraries from other Xcode projects. When building the master library target for ...
3
votes
3answers
458 views

Roll 64-bit and 32-bit versions of an app into the same binary?

We have an application we're trying to deploy on both 64 bit and 32 bit platforms. Is there a way to put both compiled versions of the code in the same binary, a la Apple and NeXT's fat binaries? ...
2
votes
3answers
627 views

Proper way to make a fat binary prefer to be 32bit on 64bit OS X 10.6?

Suppose I ask the user "do you want to run in 32bit mode or 64bit mode" and they pick 32bit. How do I register this fact with the operating system? I've looked at the arch command, but I don't want ...
1
vote
1answer
153 views

Under iOS, is there a quick way to see what symbols I have for specific UUID's?

Under iOS, unique identifiers, known as UUID's, are assigned at compile time. Over time, a developer may accumulate many builds with different identifiers. Sometimes it may be useful to quickly ...
1
vote
1answer
598 views

Under iOS, does anyone know how UUID's are generated for executables and what information may be encoded therein?

Applications compiled on iOS are assigned identifiers (UUID's) at compile time. These identifiers may be revealed by the dwarfdump tool. Does anyone know how UUID's are generated and what information ...
1
vote
1answer
142 views

Under iOS, is there a way to determine which architecture was being executed in a crash report?

Given a crash report (non-symbolicated) on iOS, is there a way to determine which architecture (armv6 or armv7) was being executed by the device? Why do I ask? I have received some crash reports that ...
0
votes
0answers
121 views

How to create a FAT Jar from Alfresco SDK Eclipse IDE Project?

I'm not able to find a conveniant way to generate the full enterprise SDK for Alfresco using maven. so maybe using the provided SDK maybe it's possible to link the FAT Jar to a maven AMP project or ...
0
votes
1answer
122 views

what are the parameters for __cudaRegisterFatBinary and __cudaRegisterFunction functions?

I came across two functions __cudaRegisterFatBinary() and __cudaRegisterFunction() I understand nvcc injects it into the source code to get the handle to the compiled cubin and to register the ...
0
votes
0answers
85 views

static fat library include headerfiles

(static library for iPhone clients) I have about 30 classes, I want to have these classes in the library. The user should see only 10 classes, to work with. The other 20 (.h) will import from an ...