mirror of https://github.com/YosysHQ/picorv32.git
fix firmware/sections.lds section size alignment on 4 bytes
This commit is contained in:
parent
507f49d086
commit
d60ffd8eea
5
Makefile
5
Makefile
|
@ -1,13 +1,14 @@
|
|||
RISCV_PATH = /opt/riscv32i/bin
|
||||
|
||||
RISCV_GNU_TOOLCHAIN_GIT_REVISION = 411d134
|
||||
RISCV_GNU_TOOLCHAIN_INSTALL_PREFIX = /opt/riscv32
|
||||
RISCV_GNU_TOOLCHAIN_INSTALL_PREFIX = $(RISCV_PATH)
|
||||
|
||||
SHELL = bash
|
||||
TEST_OBJS = $(addsuffix .o,$(basename $(wildcard tests/*.S)))
|
||||
FIRMWARE_OBJS = firmware/start.o firmware/irq.o firmware/print.o firmware/sieve.o firmware/multest.o firmware/stats.o
|
||||
GCC_WARNS = -Werror -Wall -Wextra -Wshadow -Wundef -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings
|
||||
GCC_WARNS += -Wredundant-decls -Wstrict-prototypes -Wmissing-prototypes -pedantic # -Wconversion
|
||||
TOOLCHAIN_PREFIX = $(RISCV_GNU_TOOLCHAIN_INSTALL_PREFIX)i/bin/riscv32-unknown-elf-
|
||||
TOOLCHAIN_PREFIX = $(RISCV_GNU_TOOLCHAIN_INSTALL_PREFIX)/riscv32-unknown-elf-
|
||||
COMPRESSED_ISA = C
|
||||
|
||||
# Add things like "export http_proxy=... https_proxy=..." here
|
||||
|
|
|
@ -20,5 +20,6 @@ SECTIONS {
|
|||
*(.text);
|
||||
*(*);
|
||||
end = .;
|
||||
. = ALIGN(4);
|
||||
} > mem
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue