Skip to content

Commit 66e93fd

Browse files
authored
Merge pull request #9807 from deepikabhavnani/iar8_version_check
IAR 8 version update
2 parents 34c933e + 552d1c6 commit 66e93fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/test/toolchains/api_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_arm_version_check(_run_cmd):
5555
def test_iar_version_check(_run_cmd):
5656
set_targets_json_location()
5757
_run_cmd.return_value = ("""
58-
IAR ANSI C/C++ Compiler V7.80.1.28/LNX for ARM
58+
IAR ANSI C/C++ Compiler V8.32.1/LNX for ARM
5959
""", "", 0)
6060
notifier = MockNotifier()
6161
toolchain = TOOLCHAIN_CLASSES["IAR"](TARGET_MAP["K64F"], notify=notifier)

tools/toolchains/iar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class IAR(mbedToolchain):
3333
DIAGNOSTIC_PATTERN = re.compile('"(?P<file>[^"]+)",(?P<line>[\d]+)\s+(?P<severity>Warning|Error|Fatal error)(?P<message>.+)')
3434
INDEX_PATTERN = re.compile('(?P<col>\s*)\^')
3535
IAR_VERSION_RE = re.compile(b"IAR ANSI C/C\+\+ Compiler V(\d+\.\d+)")
36-
IAR_VERSION = LooseVersion("7.80")
36+
IAR_VERSION = LooseVersion("8.32")
3737

3838
@staticmethod
3939
def check_executable():

0 commit comments

Comments
 (0)