diff options
| author | Yajun Xia <[email protected]> | 2023-09-14 09:43:51 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-14 09:43:51 +0800 |
| commit | cd9007712b936b69584edded9343e79d53564ced (patch) | |
| tree | 1248465a18ee6617e8647ba0386d0f868ff31e68 | |
| parent | bc8bed494d3a37eea022c1385008bdab991f3370 (diff) | |
Fixed the issue of ports_arch_check failed on the step of copy ports arch on ARMv8 ports. (#300)
https://msazure.visualstudio.com/One/_workitems/edit/25154735/
| -rw-r--r-- | ports_arch/ARMv8-A/update.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports_arch/ARMv8-A/update.ps1 b/ports_arch/ARMv8-A/update.ps1 index 14aef2da..1c7ae53e 100644 --- a/ports_arch/ARMv8-A/update.ps1 +++ b/ports_arch/ARMv8-A/update.ps1 @@ -78,7 +78,7 @@ Write-Verbose ("Patch files: $PatchFiles") Write-Verbose ("LogDir: $LogDir") $cores = @("cortex_a35", "cortex_a53", "cortex_a55", "cortex_a57", "cortex_a65", "cortex_a65ae", "cortex_a72", "cortex_a73", "cortex_a75", "cortex_a76", "cortex_a76ae", "cortex_a77") -$compilers = @("ac6", "gnu", "iar", "ghs") +$compilers = @("ac6", "gnu") $patches = ( ('example_build\sample_threadx\.cproject', ( (('value="cortex-a35"'), ('value="cortex-$core_short_lower"')), |
