Fix CROSS variable on multiple environments (#483)

The name of the compiler that CROSS is set to varies from system to
system. (gcc-mips-linux-gnu on Debian) This was not handled in
s2d_engine and calc_bss.sh
This commit is contained in:
Chasarr
2022-10-01 00:54:07 +02:00
committed by GitHub
parent da4b4db7ae
commit 0dd3ef7f50
3 changed files with 29 additions and 12 deletions

View File

@@ -10,7 +10,6 @@ DUMMY != mkdir -p $(BUILD_DIR)
C_FILES = $(wildcard ./*.c)
O_FILES = $(foreach file,$(C_FILES),$(BUILD_DIR)/$(file:.c=.o))
CROSS := mips-linux-gnu-
CC = $(CROSS)gcc
AR = $(CROSS)ar