Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


fixed makefile paths for preprocessor and assembler
Jack Lange [Fri, 19 Dec 2008 06:41:23 +0000 (00:41 -0600)]
palacios/build/Makefile

index 6dfb426..22a275d 100644 (file)
@@ -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