Skip to content
Snippets Groups Projects
Commit 92d7eaaf authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-418: Provide Darwin_i686_Manifest alias to Darwin_i386_Manifest.

It's never been clear to me why Macs tend to refer to 32-bit Intel processors
as i386 when other platforms tend to refer to them as i686. New CMake logic to
derive ARCH from ADDRESS_SIZE produces i686. Give viewer_manifest.py a
Darwin_i686_Manifest class alias so it continues to work when arch is passed
as i686 as well as i386.
parent 73a7b140
No related branches found
No related tags found
No related merge requests found
...@@ -1049,6 +1049,10 @@ def package_finish(self): ...@@ -1049,6 +1049,10 @@ def package_finish(self):
self.package_file = finalname self.package_file = finalname
self.remove(sparsename) self.remove(sparsename)
class Darwin_i686_Manifest(Darwin_i386_Manifest):
"""alias in case arch is passed as i686 instead of i386"""
pass
class LinuxManifest(ViewerManifest): class LinuxManifest(ViewerManifest):
def construct(self): def construct(self):
super(LinuxManifest, self).construct() super(LinuxManifest, self).construct()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment