Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion share/plug-ins/memory_usage_providers/ld.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class LD(core.MemoryUsageProvider):
_cache = {}

# The list of supported targets
_supported_targets = ["arm-eabi", "leon3-elf", "m68020-elf",
_supported_targets = ["arm-eabi", "leon3-elf", "loongarch64-elf", "m68020-elf",
"powerpc-elf", "powerpc-eabispe", "riscv32-elf",
"riscv64-elf", "aarch64-elf", "x86_64-elf"]

Expand Down
2 changes: 2 additions & 0 deletions share/support/core/toolchains.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,8 @@
<compiler lang="asm"/>
</toolchain>

<toolchain name="loongarch64-elf"/>

<toolchain name="m68020-elf"/>

<toolchain name="riscv64-elf"/>
Expand Down
2 changes: 1 addition & 1 deletion share/support/ui/board_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class BoardLoader(Module):
__is_busy = False

# The list of supported targets
__supported_targets = ["arm-eabi", "leon3-elf", "m68020-elf",
__supported_targets = ["arm-eabi", "leon3-elf", "loongarch64-elf", "m68020-elf",
"powerpc-elf", "powerpc-eabispe", "riscv32-elf",
"riscv64-elf", "aarch64-elf", "x86_64-elf"]

Expand Down