Disable 'C'-compressed ISA extension.
It works excellent, but KDB disassembler and DTrace FBT provider for RISC-V do lack support for it. They currently handle 4-byte instructions only, while C-compressed ISA extension introduces 2-byte instructions freely mixing them together. So disable it for now. Reviewed by: markj@ Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D16436
This commit is contained in:
parent
1d75e87b28
commit
8e8fbf193d
@ -367,9 +367,9 @@ CFLAGS += -mcpu=8540 -Wa,-me500 -mspe=yes -mabi=spe -mfloat-gprs=double
|
||||
|
||||
.if ${MACHINE_CPUARCH} == "riscv"
|
||||
.if ${MACHINE_ARCH:Mriscv*sf}
|
||||
CFLAGS += -march=rv64imac -mabi=lp64
|
||||
CFLAGS += -march=rv64ima -mabi=lp64
|
||||
.else
|
||||
CFLAGS += -march=rv64imafdc -mabi=lp64d
|
||||
CFLAGS += -march=rv64imafd -mabi=lp64d
|
||||
.endif
|
||||
.endif
|
||||
|
||||
|
@ -103,7 +103,7 @@ CFLAGS+= -ffreestanding ${CFLAGS_NO_SIMD}
|
||||
.if ${MACHINE_CPUARCH} == "aarch64"
|
||||
CFLAGS+= -mgeneral-regs-only -fPIC
|
||||
.elif ${MACHINE_CPUARCH} == "riscv"
|
||||
CFLAGS+= -march=rv64imac -mabi=lp64
|
||||
CFLAGS+= -march=rv64ima -mabi=lp64
|
||||
.else
|
||||
CFLAGS+= -msoft-float
|
||||
.endif
|
||||
|
@ -131,7 +131,7 @@ INLINE_LIMIT?= 8000
|
||||
.endif
|
||||
|
||||
.if ${MACHINE_CPUARCH} == "riscv"
|
||||
CFLAGS.gcc+= -mcmodel=medany -march=rv64imafdc -mabi=lp64
|
||||
CFLAGS.gcc+= -mcmodel=medany -march=rv64imafd -mabi=lp64
|
||||
INLINE_LIMIT?= 8000
|
||||
.endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user