From: Jack Lange Date: Fri, 19 Dec 2008 06:41:23 +0000 (-0600) Subject: fixed makefile paths for preprocessor and assembler X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=4e78dc8d5ae0bcf146eb425c8a53178a1fb758e8 fixed makefile paths for preprocessor and assembler --- diff --git a/palacios/build/Makefile b/palacios/build/Makefile index 6dfb426..22a275d 100644 --- a/palacios/build/Makefile +++ b/palacios/build/Makefile @@ -348,13 +348,13 @@ TARGET_OBJCOPY := $(TARGET_CC_PREFIX)objcopy NASM := $(PROJECT_ROOT)/../devtools/bin/nasm #NASM := /opt/vmm-tools/bin/nasm -CPP := cpp +CPP := $(TARGET_CC_PREFIX)cpp ifeq ($(ARCH),64) -AS = as --64 +AS = $(TARGET_CC_PREFIX)as --64 else -AS = as --32 +AS = $(TARGET_CC_PREFIX)as --32 endif