X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Makefile.cfg;h=d12710cf90852936131825e5ad44055a786b681c;hb=98bd9c0c8985c50c42231c116a4e18fedd47761e;hp=022a02ef573eb705a4711817ffb39f28f401e64a;hpb=e7a76b0d8a0cc6aa77966509780973a6f8216ef7;p=tpg%2Facess2.git diff --git a/Makefile.cfg b/Makefile.cfg index 022a02ef..d12710cf 100644 --- a/Makefile.cfg +++ b/Makefile.cfg @@ -2,12 +2,15 @@ # Acess2 Build Configuration # +V ?= @ + ACESSDIR := $(dir $(lastword $(MAKEFILE_LIST))) ACESSDIR := $(shell cd $(ACESSDIR) && pwd) # Install destination configuration DISTROOT := -i $(ACESSDIR)/Acess2.img ::/Acess2 NCC := $(CC) +NCXX := $(CXX) xCP := mcopy -D o xMKDIR := mmd -D s @@ -16,7 +19,6 @@ xMKDIR := mmd -D s # Default build programs #CC := gcc #LD := ld -AS := nasm DISASM := objdump -d -S RM := @rm -f STRIP := strip @@ -35,12 +37,26 @@ ifeq ($(ARCHDIR),) ARCHDIR := x86 endif +# Default compilers +ifneq ($(ARCHDIR),native) +CC = $(COMPILERDIR)bin/$(TRIPLET)-gcc +CXX = $(COMPILERDIR)bin/$(TRIPLET)-g++ +LD = $(COMPILERDIR)bin/$(TRIPLET)-ld +OBJDUMP = $(COMPILERDIR)bin/$(TRIPLET)-objdump + ifeq ($(AS),as) + AS = $(COMPILERDIR)bin/$(TRIPLET)-gcc -c + endif +endif + ifneq ($(ARCH),host) ifneq ($(ARCHDIR),$(ARCH)) include $(ACESSDIR)/BuildConf/$(ARCHDIR)/Makefile.cfg endif endif +COMPILERDIR := $(ACESSDIR)/Externals/Output/$(ARCHDIR)-BUILD/ +PATH := $(COMPILERDIR)bin/ $(PATH) + ifeq ($(PLATFORM),) PLATFORM := default endif