Skip to content

Commit

Permalink
fix: only include MARMASM when toolset is target
Browse files Browse the repository at this point in the history
  • Loading branch information
targos authored and ryzokuken committed Oct 16, 2020
1 parent c2ccc1a commit 5a2794a
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions pylib/gyp/generator/msvs.py
Expand Up @@ -2177,7 +2177,12 @@ def GenerateOutput(target_list, target_dicts, data, params):


def _GenerateMSBuildFiltersFile(
filters_path, source_files, rule_dependencies, extension_to_rule_name, platforms
filters_path,
source_files,
rule_dependencies,
extension_to_rule_name,
platforms,
toolset,
):
"""Generate the filters file.
Expand All @@ -2197,6 +2202,7 @@ def _GenerateMSBuildFiltersFile(
rule_dependencies,
extension_to_rule_name,
platforms,
toolset,
filter_group,
source_group,
)
Expand All @@ -2222,6 +2228,7 @@ def _AppendFiltersForMSBuild(
rule_dependencies,
extension_to_rule_name,
platforms,
toolset,
filter_group,
source_group,
):
Expand Down Expand Up @@ -2257,13 +2264,14 @@ def _AppendFiltersForMSBuild(
rule_dependencies,
extension_to_rule_name,
platforms,
toolset,
filter_group,
source_group,
)
else:
# It's a source. Create a source entry.
_, element = _MapFileToMsBuildSourceType(
source, rule_dependencies, extension_to_rule_name, platforms
source, rule_dependencies, extension_to_rule_name, platforms, toolset
)
source_entry = [element, {"Include": source}]
# Specify the filter it is part of, if any.
Expand All @@ -2273,7 +2281,7 @@ def _AppendFiltersForMSBuild(


def _MapFileToMsBuildSourceType(
source, rule_dependencies, extension_to_rule_name, platforms
source, rule_dependencies, extension_to_rule_name, platforms, toolset
):
"""Returns the group and element type of the source file.
Expand Down Expand Up @@ -2301,9 +2309,8 @@ def _MapFileToMsBuildSourceType(
elif ext in [".s", ".asm"]:
group = "masm"
element = "MASM"
for platform in platforms:
if platform.lower() in ["arm", "arm64"]:
element = "MARMASM"
if "arm64" in platforms and toolset == "target":
element = "MARMASM"
elif ext == ".idl":
group = "midl"
element = "Midl"
Expand Down Expand Up @@ -3613,6 +3620,7 @@ def _AddSources2(
rule_dependencies,
extension_to_rule_name,
_GetUniquePlatforms(spec),
spec["toolset"],
)
if group == "compile" and not os.path.isabs(source):
# Add an <ObjectFileName> value to support duplicate source
Expand Down Expand Up @@ -3729,6 +3737,7 @@ def _GenerateMSBuildProject(project, options, version, generator_flags, spec):
rule_dependencies,
extension_to_rule_name,
platforms,
toolset,
)
missing_sources = _VerifySourcesExist(sources, project_dir)

Expand Down

0 comments on commit 5a2794a

Please sign in to comment.