Linux: Add ARM build support (issue #1990)

This commit is contained in:
Marshall Greenblatt
2016-09-09 18:03:17 -07:00
parent a312974ad9
commit 6158110063
8 changed files with 400 additions and 15 deletions

View File

@@ -119,6 +119,7 @@ class cef_html_builder:
return {
'linux32': 'Linux 32-bit',
'linux64': 'Linux 64-bit',
'linuxarm': 'Linux ARM',
'macosx64': 'Mac OS X 64-bit',
'windows32': 'Windows 32-bit',
'windows64': 'Windows 64-bit'
@@ -169,7 +170,7 @@ class cef_html_builder:
@staticmethod
def _get_tooltip_text(platform, cef_version, file):
if platform == 'linux32' or platform == 'linux64':
if platform.startswith('linux'):
sample_app = 'cefsimple'
else:
sample_app = 'cefclient'

View File

@@ -75,7 +75,7 @@ class cef_json_builder:
@staticmethod
def get_platforms():
""" Returns the list of supported platforms. """
return ('linux32', 'linux64', 'macosx64', 'windows32', 'windows64')
return ('linux32', 'linux64', 'linuxarm', 'macosx64', 'windows32', 'windows64')
@staticmethod
def get_distrib_types():