mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
0105f815c6
The target is intended to emulate the Cortex-M, not to be a generic QEMU target.
15 lines
366 B
JSON
15 lines
366 B
JSON
{
|
|
"inherits": ["cortex-m"],
|
|
"llvm-target": "armv7m-none-eabi",
|
|
"build-tags": ["qemu", "lm3s6965"],
|
|
"cflags": [
|
|
"--target=armv7m-none-eabi",
|
|
"-Qunused-arguments"
|
|
],
|
|
"linkerscript": "targets/lm3s6965.ld",
|
|
"extra-files": [
|
|
"targets/cortex-m-qemu.s"
|
|
],
|
|
"emulator": ["qemu-system-arm", "-machine", "lm3s6965evb", "-semihosting", "-nographic", "-kernel"]
|
|
}
|