mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 09:12:32 +00:00
e27737a0a5
This commit adds RISC-V file-system support through the backport originally provided by ARMv8. fixes #4800
20 lines
789 B
Makefile
20 lines
789 B
Makefile
SRC_NOLINK += atomic_add_32.S atomic_add_64.S atomic_and_32.S atomic_and_64.S \
|
|
atomic_cas_32.S atomic_cas_64.S atomic_nand_32.S atomic_nand_64.S \
|
|
atomic_or_32.S atomic_or_64.S atomic_sub_32.S atomic_sub_64.S \
|
|
atomic_swap_32.S atomic_swap_64.S atomic_xor_32.S atomic_xor_64.S \
|
|
membar_ops.S
|
|
|
|
SRC_NOLINK += rump_generic_cpu.c rump_generic_pmap.c
|
|
|
|
INC_DIR += $(RUMP_PORT_DIR)/src/sys/rump/include
|
|
#INC_DIR += $(REP_DIR)/src/lib/rump/spec/arm_64
|
|
|
|
include $(REP_DIR)/lib/mk/rump.inc
|
|
|
|
vpath %.S $(RUMP_PORT_DIR)/../libc/riscv/atomic
|
|
vpath %.c $(RUMP_PORT_DIR)/src/common/lib/libc/gen
|
|
vpath %.c $(RUMP_PORT_DIR)/../dde_rump_backport/riscv/riscv
|
|
vpath %.c $(RUMP_PORT_DIR)/src/sys/rump/librump/rumpkern/arch/generic
|
|
|
|
CC_CXX_WARN_STRICT =
|