BuildConf/host - Slight fix to allow scan-build for non 64-bit architectures
[tpg/acess2.git] / BuildConf / host / Makefile.cfg
1 #
2 # Acess2 Host Native makefile
3 # - Used for forcing the architecture
4 #
5
6 SAVED_CC_ := $(CC)
7 SAVED_LD_ := $(LD)
8
9 include $(ACESSDIR)/BuildConf/$(HOST_ARCH)/Makefile.cfg
10
11 OBJDUMP := objdump -S
12
13 CC := $(SAVED_CC_)
14 ifeq ($(HOST_ARCH),x86)
15 CC += -m32
16 endif
17 LD := $(SAVED_LD_)
18

UCC git Repository :: git.ucc.asn.au