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.


added -fno-stack-protector
Jack Lange [Thu, 23 Apr 2009 23:19:07 +0000 (18:19 -0500)]
palacios/build/Makefile

index b1a0b4e..ba09371 100644 (file)
@@ -249,6 +249,7 @@ else
   INSTRUMENT_OPT := 
 endif
 
+CFLAGS = -fno-stack-protector
 
 
 # ----------------------------------------------------------------------
@@ -311,7 +312,7 @@ VMM_OBJS := \
 
 # Extra C flags for the VMM objects
 $(VMM_OBJS) :: EXTRA_CFLAGS = \
-       $(JRLDEBUG) \
+       $(JRLDEBUG) $(CFLAGS)\
 
 
 
@@ -320,7 +321,7 @@ XED_OBJS := \
        xed/v3-udiv-compat.o \
 
 $(XED_OBJS) :: EXTRA_CFLAGS = \
-       $(JRLDEBUG) \
+       $(JRLDEBUG) $(CFLAGS)\
 
 DEVICES_OBJS := \
        devices/generic.o \
@@ -349,7 +350,7 @@ DEVICES_OBJS := \
 #      devices/vnic.o \
 
 $(DEVICES_OBJS) :: EXTRA_CFLAGS = \
-       $(JRLDEBUG) \
+       $(JRLDEBUG) $(CFLAGS)\