Split some cflags
This commit is contained in:
parent
c8abe9e1aa
commit
23a41dfbdd
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -17,7 +17,10 @@ CFLAGS = -Wall -Werror -O
|
|||
CFLAGS += -Wno-unused-result
|
||||
CFLAGS += -mcmodel=medany
|
||||
CFLAGS += -march=rv64gc -mabi=lp64
|
||||
CFLAGS += -ffreestanding -fno-common -nostdlib -mno-relax
|
||||
CFLAGS += -ffreestanding
|
||||
CFLAGS += -fno-common
|
||||
CFLAGS += -nostdlib
|
||||
CFLAGS += -mno-relax
|
||||
|
||||
CFLAGS += -fno-stack-protector # Prevents code that needs libc / runtime support
|
||||
CFLAGS += -MD # Generate header dependency files (.d)
|
||||
|
|
Loading…
Add table
Reference in a new issue