Skip to content

Commit 42eb863

Browse files
evgeniy-paltsevqipengzha
authored andcommitted
ARC: used 64bit MDB binary by default.
This significantly improve user experience as 32 bit mdb binary require to install multiple libraries before it can be used on modern linux distros. Signed-off-by: Eugeniy Paltsev <[email protected]> Signed-off-by: Evgeniy Paltsev <[email protected]>
1 parent a1c5ce4 commit 42eb863

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmake/emu/nsim.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ if("${BOARD_DEBUG_RUNNER}" STREQUAL "mdb-nsim" OR "${BOARD_FLASH_RUNNER}" STREQU
33
# mdb is required to run nsim multicore targets
44
find_program(
55
MDB
6-
mdb
6+
mdb64
77
)
88
set(MDB_BASIC_OPTIONS -nooptions -nogoifmain -toggle=include_local_symbols=1)
99

scripts/west_commands/runners/mdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def is_flash_cmd_need_exit_immediately(mdb_runner):
3535
return True
3636

3737
def mdb_do_run(mdb_runner, command):
38-
commander = "mdb"
38+
commander = "mdb64"
3939

4040
mdb_runner.require(commander)
4141

scripts/west_commands/tests/test_mdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from conftest import RC_KERNEL_ELF, RC_BOARD_DIR, RC_BUILD_DIR
1414

1515

16-
TEST_DRIVER_CMD = 'mdb'
16+
TEST_DRIVER_CMD = 'mdb64'
1717
TEST_NSIM_ARGS='test_nsim.args'
1818
TEST_TARGET = 'test-target'
1919
TEST_BOARD_NSIM_ARGS = '@' + path.join(RC_BOARD_DIR, 'support', TEST_NSIM_ARGS)

0 commit comments

Comments
 (0)