Adapt cfg-expression evaluation for the new wasm64 target_arch
This commit is contained in:
parent
55998b3bd2
commit
c026764e94
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ def evaluate_predicate(name: str, value: str) -> bool:
|
|||
# Needs to be ignored, as we cannot generate patches that are
|
||||
# different depending on the host architecture - except if the
|
||||
# target architecture is "wasm32", which we don't support.
|
||||
return value != "wasm32"
|
||||
return value not in ["wasm32", "wasm64"]
|
||||
|
||||
case "target_feature":
|
||||
# The "target_feature" predicate can be ignored as well, since the
|
||||
|
|
Loading…
Reference in a new issue