maix-bit: add code model in target definition

This is needed to avoid linking errors because the globals are placed
in memory at address 0x80000000 which is out of bounds for the default
code model.
This commit is contained in:
Yannis Huber
2020-06-10 09:35:20 +02:00
committed by Ron Evans
parent 163631df9e
commit 2fe4a9be71
+2 -1
View File
@@ -1,5 +1,6 @@
{
"inherits": ["riscv64"],
"features": ["+a", "+c", "+m", "+f", "+d"],
"build-tags": ["k210", "kendryte"]
"build-tags": ["k210", "kendryte"],
"code-model": "medium"
}