watchOS 26 Moves Latest Apple Watch Models to New Architecture - MacRumorsOpen MenuShow RoundupsShow Forums menuVisit ForumsOpen Sidebar
Skip to Content

watchOS 26 Moves Latest Apple Watch Models to New Architecture

watchOS 26 brings a significant upgrade to the Apple Watch's architecture, transitioning the latest models to full arm64.

watchos 26
The change was revealed in Apple's "What's new in watchOS 26" video for developers. The Apple Watch Series 9, Series 10, and Apple Watch Ultra 2 are set to move from arm64_32 to the full arm64 architecture.

The arm64_32 architecture was a modified version of the standard 64-bit ARM architecture with 32-bit pointers, specifically optimized for the constrained memory environments of wearable devices. This hybrid architecture allowed Apple to implement the benefits of 64-bit instruction sets while maintaining a tighter memory footprint than full 64-bit systems.

The standard arm64 architecture provides 64-bit pointers and access to broader memory ranges, enhanced performance, and increased compatibility with general-purpose ARM computing standards. The move also opens the door for potentially more complex and computationally intensive watchOS applications, since arm64 provides access to more registers and system resources compared to the more compact arm64_32, as well as more direct alignment with development tools and runtime environments used across other Apple platforms.

‌watchOS 26‌ apps must now be built with awareness of both arm64 and arm64_32, depending on the target device. Apple clarified that older models, such as the Apple Watch SE (2nd generation) and Series 8, continue to use the arm64_32 architecture. As a result, watchOS apps need to include separate binaries to support both instruction sets. Xcode automatically manages the build process for arm64 and arm64_32 as long as developers maintain appropriate deployment targets and architectures in their project settings.

Existing apps built for arm64_32 will continue to run on newer Apple Watches running ‌watchOS 26‌ via compatibility layers, but re-compilation for native arm64 is encouraged for best performance and forward compatibility. It is likely that arm64_32 support on the Apple Watch will gradually diminish over coming years as legacy hardware is retired. All of Apple's other platforms already use the full arm64 architecture.

Related Roundup: watchOS 26
Related Forum: Apple Watch

Popular Stories

imac video apple feature

Apple Released Yet Another New Product Today

Friday March 20, 2026 2:39 pm PDT by
Apple has unveiled a whopping nine new products so far this March, including an iPhone 17e, iPad Air models with the M4 chip, MacBook Air models with the M5 chip, MacBook Pro models with M5 Pro and M5 Max chips, the all-new MacBook Neo, an updated Studio Display, a higher-end Studio Display XDR, AirPods Max 2, and now the Nike Powerbeats Pro 2. iPhone 17e features the same overall design as...
ios 26 4 pastel

iOS 26.4: Top 10 New Features Coming to Your iPhone

Friday March 20, 2026 2:44 pm PDT by
iOS 26.4 isn't the major update with new Siri features that we hoped for, but there are some useful quality of life improvements, and a little bit of fun with an AI playlist generator and new emoji characters. Playlist Playground - Apple Music has a Playlist Playground option that lets you generate playlists from text-based descriptions. You can include moods, feelings, activities, or...
iPhone 18 Pro Deep Red Feature

iPhone 18 Pro Launching Later This Year With These 12 New Features

Wednesday March 18, 2026 7:39 am PDT by
While the iPhone 18 Pro and iPhone 18 Pro Max are not expected to launch for another six months or so, there are already plenty of rumors about the devices. It was initially reported that the iPhone 18 Pro models would have fully under-screen Face ID, with only a front camera visible in the top-left corner of the screen. However, the latest rumors indicate that only one Face ID component...

Top Rated Comments

10 months ago

Every sentence in English should begin with a capital letter. This is a fundamental rule of English grammar.
Not if it’s a company name, product name or trademark. Apple has chosen to keep it lowercase in all of their articles and marketing so it makes sense that MacRumors chose to follow that brand style.
Score: 30 Votes (Like | Disagree)
10 months ago
Wooo, this is truly a game changer for Apple Watch. With the move to arm64, the modern Apple Watches are truly the watches for ultra pros. This will allow developers to take watchOS apps to a whole new level, while maintaining the best-in-class privacy only Apple is known for. Apple can’t wait to see the incredible things customers do with the biggest leap forward in Apple Watch since the original Apple Watch.
Score: 20 Votes (Like | Disagree)
10 months ago
That’s a lot of “Greek” in this article for my brain capacity. All I want to know is will safari be snappier on my watch from now on?
Score: 18 Votes (Like | Disagree)
QuarterSwede Avatar
10 months ago

Every sentence in English should begin with a capital letter. This is a fundamental rule of English grammar.
Depending on what style guide they’re using and the audience, an exception can be made for a product name that isn’t capitalized like “watchOS.” For this audience, it makes sense.
Score: 11 Votes (Like | Disagree)
MrCubes Avatar
10 months ago

Apple has really pushed the bounds of 64 bit computing for sure... but I absolutely do not see any benefit to going all in on 64 bit pointers on apple watch. The latest models have ~1 GB of RAM. They could quadruple that amount and still be fine with 32 bit pointers. I'd be interested to see what they are doing under the hood that truly makes going to 64 bit pointers all that great at this memory footprint that justifies this change - otherwise this feels like a slick way of combinging a 64 bit marketing win with forced obsolesce.

"Look!!! 64 bit stuff... oh by the way, the pointers take double the memory, so older devices will run even slower... time to upgrade!"
It's not just about addressable memory. While you are correct that pointers will generally take double the memory when moving from 32 to 64 bit, storage of pointers is usually a tiny fraction of an applications memory footprint. It *may* impact how much you can fit in a cacheline if you have containers with a lot of pointers (assuming the cacheline does not double with this move, too - I'm only going by the article and it doesn't mention it). So, overall, a fairly negligible downside. Note that there should not be a difference in speed of access of a 32 bit pointer vs a 64 bit pointer (although alternate pointers in a consecutive range may see a difference, depending on how that mapping is implemented).

The upside is, at the very least: more registers (if the article is correct) - which is often even more important than the capacity of the cacheline! There is some handwaving in the article about things like "more system resources" 🤷🏻‍♂️ Could mean memory (but we don't seem to be close to the limit there, as you say), so there may be other benefits.

But based on access to more registers alone I'd say this is likely to be a net performance advantage for most (if not all) apps.

Of course none of this is straightforward and the reality may look quite different to my speculation, above.
Score: 8 Votes (Like | Disagree)
10 months ago

Apple has really pushed the bounds of 64 bit computing for sure... but I absolutely do not see any benefit to going all in on 64 bit pointers on apple watch. The latest models have ~1 GB of RAM. They could quadruple that amount and still be fine with 32 bit pointers. I'd be interested to see what they are doing under the hood that truly makes going to 64 bit pointers all that great at this memory footprint that justifies this change - otherwise this feels like a slick way of combinging a 64 bit marketing win with forced obsolesce.

"Look!!! 64 bit stuff... oh by the way, the pointers take double the memory, so older devices will run even slower... time to upgrade!"
The phones also started out on 32 bit ARM processors. What they gain by going to fully 64 bit is more registers and better optimized ISA. The code will get larger with larger pointers, so they probably waited with this step until they felt the gains overshadowed the disadvantages. It's more than just the addressable memory, it's about efficiency as well as when they transformed the phones to 64 bit.
Score: 5 Votes (Like | Disagree)
Related Apple News: Ipad Air | Iphone 17e Vs Iphone 16 | App Store | Macbook Pro M5 Pro M5 Max | Counterpoint