We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 65cf14a + 20d3459 commit f133b29Copy full SHA for f133b29
scripts/generate_target_board
@@ -50,9 +50,14 @@ def main(argv):
50
print ("The --sim-name and/or --build-arch-abi cannot be empty or null.")
51
return
52
53
- target_board_list = [
54
- generate_one_target_board(options.build_arch_abi, "", options)
55
- ]
+ target_board_list = []
+ arch_abi_list = [options.build_arch_abi]
+ if ' ' in options.build_arch_abi:
56
+ arch_abi_list = options.build_arch_abi.split (" ")
57
+
58
+ for one_arch_abi in arch_abi_list:
59
+ target_board = generate_one_target_board(one_arch_abi, "", options)
60
+ target_board_list.append(target_board)
61
62
if options.extra_test_arch_abi_flags_list:
63
extra_test_list = options.extra_test_arch_abi_flags_list.split (";")
0 commit comments