feat: use GCC

This commit is contained in:
Eatswap 2022-12-13 19:00:42 +08:00
parent d225f6ee7f
commit 347d225794
Signed by: Eatswap
GPG Key ID: BE661106A1F3FA0B
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@ YACCFLAGS ?= -Wall --color -v -t -d -Wcounterexamples
LANG = c++ LANG = c++
# Compile C/C++ Code # Compile C/C++ Code
CC = clang CC = gcc
CXX = clang++ CXX = g++
OUTPUT ?= $(PROJ).exe OUTPUT ?= $(PROJ).exe
COMMONFLAGS ?= -g -Wall COMMONFLAGS ?= -g -Wall