rename variable `CCFLAGS` to `CFLAGS`

`CCFLAGS` doesn't exist in my Make version as far as I'm aware.
This commit is contained in:
Flinner 2023-11-21 07:35:05 +03:00 committed by GitHub
parent c0acaebf0d
commit fc6d5d14e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ CXX = $(RISCV_TOOLS_PREFIX)g++
CC = $(RISCV_TOOLS_PREFIX)gcc
AS = $(RISCV_TOOLS_PREFIX)gcc
CXXFLAGS = -MD -Os -Wall -std=c++11
CCFLAGS = -MD -Os -Wall -std=c++11
CFLAGS = -MD -Os -Wall -std=c++11
LDFLAGS = -Wl,--gc-sections
LDLIBS = -lstdc++