Skip to content
Snippets Groups Projects
Commit 4ad6151e authored by John Hodge's avatar John Hodge
Browse files

BuildConf/host - Slight fix to allow scan-build for non 64-bit architectures

parent 6d5880d5
Branches
Tags
No related merge requests found
......@@ -6,10 +6,13 @@
SAVED_CC_ := $(CC)
SAVED_LD_ := $(LD)
include $(ACESSDIR)/BuildConf/x86_64/Makefile.cfg
include $(ACESSDIR)/BuildConf/$(HOST_ARCH)/Makefile.cfg
OBJDUMP := objdump -S
CC := $(SAVED_CC_)
ifeq ($(HOST_ARCH),x86)
CC += -m32
endif
LD := $(SAVED_LD_)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment