Remove 32-bit dependency from makefiles

This commit is contained in:
Mark
2020-05-26 22:26:46 +03:00
parent 92d2e572ae
commit 836e2b3a4b
-12
View File
@@ -1,19 +1,7 @@
CC86?=i686-elf-gcc
AR86?=i686-elf-ar
LD86?=i686-elf-ld
CC64?=x86_64-elf-gcc
AR64?=x86_64-elf-ar
LD64?=x86_64-elf-ld
# Check that the tools exist
ifeq (,$(shell which $(CC86)))
$(error Failed to find "$${CC86}": $(CC86))
endif
ifeq (,$(shell which $(LD86)))
$(error Failed to find "$${LD86}": $(LD86))
endif
ifeq (,$(shell which $(CC64)))
$(error Failed to find "$${CC64}": $(CC64))
endif