X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Facess2.git;a=blobdiff_plain;f=Makefile.cfg;h=1eedf8ec876cbaa7b9262f7b68b0c8d2c5a9f7dc;hp=022a02ef573eb705a4711817ffb39f28f401e64a;hb=13078002b01ee4f63eb2001d2ef479a2a006ea32;hpb=62f9205dc3ba2c1f5b7b0f18db426c7ab9adc2c0 diff --git a/Makefile.cfg b/Makefile.cfg index 022a02ef..1eedf8ec 100644 --- a/Makefile.cfg +++ b/Makefile.cfg @@ -8,6 +8,7 @@ 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 @@ -35,12 +36,23 @@ 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 +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