Merge pull request #7092 from cmonr/py3-in-windows

Additional fixes for running Python 3 in Windows
pull/7111/head
Cruz Monrreal 2018-06-04 21:45:55 -05:00 committed by GitHub
commit 80dde0b953
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 13 deletions

View File

@ -458,8 +458,7 @@ def merge_region_list(region_list, destination, notify, padding=b'\xFF'):
makedirs(dirname(destination)) makedirs(dirname(destination))
notify.info("Space used after regions merged: 0x%x" % notify.info("Space used after regions merged: 0x%x" %
(merged.maxaddr() - merged.minaddr() + 1)) (merged.maxaddr() - merged.minaddr() + 1))
with open(destination, "wb+") as output: merged.tofile(destination, format=format.strip("."))
merged.tofile(output, format=format.strip("."))
def scan_resources(src_paths, toolchain, dependencies_paths=None, def scan_resources(src_paths, toolchain, dependencies_paths=None,
inc_dirs=None, base_path=None, collect_ignores=False): inc_dirs=None, base_path=None, collect_ignores=False):

View File

@ -82,7 +82,7 @@ class _Parser(object):
class _GccParser(_Parser): class _GccParser(_Parser):
RE_OBJECT_FILE = re.compile(r'^(.+\/.+\.o)$') RE_OBJECT_FILE = re.compile(r'^(.+\/.+\.o)$')
RE_LIBRARY_OBJECT = re.compile(r'^.+' + sep + r'lib((.+\.a)\((.+\.o)\))$') RE_LIBRARY_OBJECT = re.compile(r'^.+' + r''.format(sep) + r'lib((.+\.a)\((.+\.o)\))$')
RE_STD_SECTION = re.compile(r'^\s+.*0x(\w{8,16})\s+0x(\w+)\s(.+)$') RE_STD_SECTION = re.compile(r'^\s+.*0x(\w{8,16})\s+0x(\w+)\s(.+)$')
RE_FILL_SECTION = re.compile(r'^\s*\*fill\*\s+0x(\w{8,16})\s+0x(\w+).*$') RE_FILL_SECTION = re.compile(r'^\s*\*fill\*\s+0x(\w{8,16})\s+0x(\w+).*$')

View File

@ -14,6 +14,7 @@
# limitations under the License. # limitations under the License.
from __future__ import print_function, division, absolute_import from __future__ import print_function, division, absolute_import
from past.builtins import basestring
import re import re
import sys import sys

View File

@ -10,7 +10,6 @@ import os.path
import sys import sys
import subprocess import subprocess
from shutil import rmtree from shutil import rmtree
from sets import Set
ROOT = abspath(dirname(dirname(dirname(dirname(__file__))))) ROOT = abspath(dirname(dirname(dirname(dirname(__file__)))))
sys.path.insert(0, ROOT) sys.path.insert(0, ROOT)
@ -254,11 +253,11 @@ def export_repos(config, ides, targets, examples):
ides - List of IDES to export to ides - List of IDES to export to
""" """
results = {} results = {}
valid_examples = Set(examples) valid_examples = set(examples)
print("\nExporting example repos....\n") print("\nExporting example repos....\n")
for example in config['examples']: for example in config['examples']:
example_names = [basename(x['repo']) for x in get_repo_list(example)] example_names = [basename(x['repo']) for x in get_repo_list(example)]
common_examples = valid_examples.intersection(Set(example_names)) common_examples = valid_examples.intersection(set(example_names))
if not common_examples: if not common_examples:
continue continue
export_failures = [] export_failures = []
@ -337,11 +336,11 @@ def compile_repos(config, toolchains, targets, profile, examples):
""" """
results = {} results = {}
valid_examples = Set(examples) valid_examples = set(examples)
print("\nCompiling example repos....\n") print("\nCompiling example repos....\n")
for example in config['examples']: for example in config['examples']:
example_names = [basename(x['repo']) for x in get_repo_list(example)] example_names = [basename(x['repo']) for x in get_repo_list(example)]
common_examples = valid_examples.intersection(Set(example_names)) common_examples = valid_examples.intersection(set(example_names))
if not common_examples: if not common_examples:
continue continue
failures = [] failures = []

View File

@ -64,8 +64,6 @@ def test_parse_gcc():
parsed_data_os_agnostic[k.replace('/', sep)] = PARSED_GCC_DATA[k] parsed_data_os_agnostic[k.replace('/', sep)] = PARSED_GCC_DATA[k]
assert memap.modules == parsed_data_os_agnostic assert memap.modules == parsed_data_os_agnostic
memap.parse(join(dirname(__file__), "gcc.map"), "GCC_CR")
assert memap.modules == parsed_data_os_agnostic
def test_add_empty_module(): def test_add_empty_module():

View File

@ -45,7 +45,7 @@ from ..memap import MemapParser
CPU_COUNT_MIN = 1 CPU_COUNT_MIN = 1
CPU_COEF = 1 CPU_COEF = 1
class LazyDict(dict): class LazyDict(object):
def __init__(self): def __init__(self):
self.eager = {} self.eager = {}
self.lazy = {} self.lazy = {}
@ -252,8 +252,6 @@ class Resources:
headername = basename(filename) headername = basename(filename)
dupe_headers.setdefault(headername, set()) dupe_headers.setdefault(headername, set())
dupe_headers[headername] |= set([headername]) dupe_headers[headername] |= set([headername])
for res in self.features.values():
res._collect_duplicates(dupe_dict, dupe_headers)
return dupe_dict, dupe_headers return dupe_dict, dupe_headers
def detect_duplicates(self, toolchain): def detect_duplicates(self, toolchain):