mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-24 23:53:04 +00:00
Makefile: disable -Wmultichar
minlzma uses multi-character constants Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
parent
1bb05d056f
commit
5fbb25942d
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -2,9 +2,9 @@ ARCH := aarch64-linux-gnu-
|
|||
|
||||
CFLAGS := -O2 -Wall -Wundef -Werror=strict-prototypes -fno-common -fno-PIE \
|
||||
-Werror=implicit-function-declaration -Werror=implicit-int \
|
||||
-Wsign-compare -Wunused-parameter \
|
||||
-Wsign-compare -Wunused-parameter -Wno-multichar \
|
||||
-ffreestanding -fpic -ffunction-sections -fdata-sections \
|
||||
-fno-stack-protector -mgeneral-regs-only -mstrict-align -march=armv8.2-a\
|
||||
-fno-stack-protector -mgeneral-regs-only -mstrict-align -march=armv8.2-a
|
||||
|
||||
LDFLAGS := -T m1n1.ld -EL -maarch64elf --no-undefined -X -Bsymbolic \
|
||||
-z notext --no-apply-dynamic-relocs --orphan-handling=warn --strip-debug \
|
||||
|
|
Loading…
Reference in a new issue