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.
1 parent 5e53962 commit 20618e8Copy full SHA for 20618e8
tests/system/alignment/Makefile
@@ -1,9 +1,9 @@
1
-PREFIX ?= riscv32-unknown-elf-
+PREFIX ?= riscv-none-elf-
2
ARCH = -march=rv32izicsr
3
LINKER_SCRIPT = linker.ld
4
5
DEBUG_CFLAGS = -g
6
-CFLAGS = -c
+CFLAGS = -c -march=rv32i_zicsr
7
LDFLAGS = -T
8
EXEC = misalign.elf
9
tests/system/alignment/main.c
@@ -15,9 +15,9 @@
15
16
#define TEST_OUTPUT(msg, length) printstr(msg, length)
17
18
-#define TEST_LOGGER(msg) \
19
- { \
20
- char _msg[] = msg; \
+#define TEST_LOGGER(msg) \
+ { \
+ char _msg[] = msg; \
21
TEST_OUTPUT(_msg, sizeof(_msg) - 1); \
22
}
23
0 commit comments