Questions tagged [universal-binary]

A universal binary is an executable file or application bundle that runs natively on either PowerPC or Intel-manufactured IA-32 or Intel 64-based Macintosh computers

A universal binary is an executable file or application bundle that runs natively on either or Intel-manufactured or Intel 64-based Macintosh computers.

Universal Binaries were announced in 2005, when Apple announced that a transition from PowerPC to Intel processors would begin.
Universal binaries typically include both PowerPC and versions of a compiled application. The operating system detects a universal binary by its header, and executes the appropriate section for the architecture in use. This allows the application to run natively on any supported architecture, with no negative performance impact beyond an increase in the storage space taken up by the larger binary.

145 questions
2
votes
1 answer

How do you extract values out of ARM ASM bits?

In IDA Pro I see the ARM ASM listed below. What bits is IDA using to get 7200? A3 F5 E1 53 SUB.W R3, R3 #7200 For convenience the values are binary are as follows 7200 = 0x1c20 = 0001 1100 0010 0000 0xA3F5E153 = 1010 0011 1111 0101 1110 0001 0101…
user700048
  • 119
  • 1
  • 3
  • 9
2
votes
2 answers

CMake Universal Binary - arch depending compile options

I'm building a MacOS Universal Binary using set (CMAKE_OSX_ARCHITECTURES arm64 x86_64) - working fine so far. But x86_64 should have other compile options than arm64. Is there something like: if (CURRENT_TARGET MATCHES x86_64) …
2
votes
0 answers

CMake MacOS universal binary build: Link to a certain lib only for x86_64 and not for ARM

I'm setting up a MacOS universal binary build (x86_64 & arm64) for a JUCE based audio plugin project. The x86_64 build has some IPP libraries (which are x86 only) as a dependency while the ARM build uses some ARM specific replacement routines…
PluginPenguin
  • 1,576
  • 11
  • 25
2
votes
4 answers

iOS Universal App question

I have submitted my iPad app to apple and got approved. Now, i want to add iPhone support to the App. My question no.1 is: Q1. is it possible to make the app universal at this moment after submission? If yes, i have question no.2 Q2. my iPhone app…
Bill Kary
  • 685
  • 2
  • 12
  • 27
2
votes
2 answers

Universal Application for IPhone/Ipod Touch 4th gen only + IPad

I'm developing a Universal Application that's only meant to be used on Retina display IPhone/IPod touch devices + IPad. How can I specify this on the plist or anywhere else in my app/binary? UIRequiredDeviceCapabilities doesn't do the trick for…
elibud
  • 8,119
  • 2
  • 21
  • 21
2
votes
3 answers

Universal Apps concept for iPhone and iPad

am a noob at universal apps so please help me out and let me know if this can be done, I am creating a universal app and for doing this i have written the code and made the settings in each of my view controllers present in the iPhone and iPad group…
Radix
  • 3,639
  • 3
  • 31
  • 47
2
votes
1 answer

Using Xcode 4 to create Universal binary

I've used this hack to restore PPC support to Xcode 4. However, every time I tried to create a universal binary, it would just create an Intel binary. After a lot of experimentation with parameters, I think I found the solution. I had to set the…
Jack James
  • 5,252
  • 6
  • 36
  • 38
2
votes
1 answer

Enable UIiStatusBar for iPad, disable for iPhone in Universal iOS app

I have a Universal iOS application, I want the status bar (UIStatusBar) to appear when the app is installed on the iPad but not when installed on the iPhone. Currently my solution is to set UIStatusBarHidden in the app-info.plist to true (which…
psy
  • 2,791
  • 26
  • 26
2
votes
2 answers

Setting iOS application languages in iTunes

I want to set the application language in iTunes. It always shows only English, but I want to show two languages in iTunes. I don’t want to make any changes to the application code, as I’m already managing these two languages by device…
Mitesh Khatri
  • 3,935
  • 4
  • 44
  • 67
2
votes
0 answers

CMake Mac: creating a universal binary using custom command/target

the overall story: I'm creating 2 libraries (32, 64) and want to create a universal binary out of them, and that the final universal binary would update only if: (1) one of the two libraries had changed. (2) the universal binary had been…
gil_mo
  • 575
  • 1
  • 6
  • 27
2
votes
1 answer

Universal application with IOS 4.2 and Xcode 3.2

I'm developping Iphone application and I want to convert it to a universal one. I found many tutorial that deals with this issue but they seems to be ancohérent to the new release of SDK and Xcode. As many said I think that making a universal…
hafedh
  • 539
  • 1
  • 9
  • 26
2
votes
6 answers

Upgrade live Universal App to iPad only

We have a live universal app in the AppStore. Our client changed his mind and doesn't want the app to be universal anymore, he wants it to be iPad only. Since the app was submitted some time ago, there are users who use the iPhone version. What…
Alpár
  • 727
  • 10
  • 22
2
votes
1 answer

Creating universal binary using XCode 4.0

I have installed XCode 4.0 in my system recently. I need to create universal binary for one of my Desktop app. How do I do this in XCode 4.0? Thanks and Regards, Deepa
spd
  • 2,114
  • 1
  • 29
  • 54
2
votes
0 answers

xcode iOS CreateUniversalBinary failed: file too large to create as a fat file

I recently add quite a lot of code to my iOS static library project. I always create universal binary that support all platforms (from iPhone4S to the current iPhone7) but after addition of the codes (which increase the .a size) results in:…
Zennichimaro
  • 5,236
  • 6
  • 54
  • 78
2
votes
1 answer

Documents directory in Universal apps

If an user has an iPad and iPhone, and synchronizes an Universal app which has stored files in the Documents directory in one of these devices (say iPhone), do these files become available to the other device (say iPad) after synchronizing?
hpique
  • 119,096
  • 131
  • 338
  • 476