Skip to content

Commit 3f96b40

Browse files
committed
Do not repeat tolchain names list
1 parent cc3dcf6 commit 3f96b40

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

workspace_tools/toolchains.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* ARM -> ARM_STD
2626
* uARM -> ARM_MICRO
2727
"""
28-
TOOLCHAINS = set(['ARM', 'uARM', 'GCC_ARM', 'GCC_CS', 'GCC_CR', 'GCC_CW', 'IAR'])
2928

3029
# List of ignored directories (all the hidden directories are ignored by default)
3130
IGNORE_DIRECTORIES = set(['CVS'])
@@ -798,3 +797,5 @@ def binary(self, elf, bin):
798797
'GCC_CW_EWL': GCC_CW_EWL, 'GCC_CW_NEWLIB': GCC_CW_NEWLIB,
799798
'IAR': IAR
800799
}
800+
801+
TOOLCHAINS = set(TOOLCHAIN_CLASSES.keys())

0 commit comments

Comments
 (0)