All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jerone Young <jyoung5-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
To: kvm-devel <kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Cc: kvm-ppc-devel
	<kvm-ppc-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Subject: [PATCH 1/3] Modify user directory makefiles & configure script
Date: Thu, 18 Oct 2007 15:10:55 -0500	[thread overview]
Message-ID: <1192738255.12849.25.camel@thinkpad> (raw)

This patch moves make rules around to accommodate for powerpc or any
none x86 architecture. This patch also adds file
user/config-powerpc.mak. Also added $CROSS_COMPILE variable is added to
the config.mak generated to configure script.


Signed-off-by: Jerone Young <jyoung5-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>

diff --git a/user/Makefile b/user/Makefile
--- a/user/Makefile
+++ b/user/Makefile
@@ -15,8 +15,7 @@ cc-option = $(shell if $(CC) $(1) -S -o 
 cc-option = $(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null \
               > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
 
-CFLAGS += -I $(KERNELDIR)/include $(autodepend-flags) -g -fomit-frame-pointer \
-	-Wall
+CFLAGS += $(autodepend-flags) -g -fomit-frame-pointer -Wall 
 CFLAGS += $(call cc-option, -fno-stack-protector, "")
 CFLAGS += $(call cc-option, -fno-stack-protector-all, "")
 
@@ -26,16 +25,7 @@ CXXFLAGS = $(autodepend-flags)
 
 autodepend-flags = -MMD -MF $(dir $*).$(notdir $*).d
 
-all: kvmctl libkvm.a flatfiles
-
-kvmctl: LDFLAGS += -pthread -lrt
-
-kvmctl: kvmctl.o main.o
-
 balloon_ctl: balloon_ctl.o
-
-libkvm.a: kvmctl.o
-	$(AR) rcs $@ $^
 
 flatfiles-common = test/bootstrap test/vmexit.flat test/smp.flat
 
@@ -78,3 +68,4 @@ clean:
 clean:
 	$(RM) kvmctl *.o *.a .*.d
 	$(RM) test/bootstrap test/*.o test/*.flat test/.*.d
+	$(RM) test/powerpc/*.o test/powerpc/*.bin test/powerpc/*.elf
diff --git a/user/config-i386.mak b/user/config-i386.mak
--- a/user/config-i386.mak
+++ b/user/config-i386.mak
@@ -3,5 +3,14 @@ bits = 32
 bits = 32
 ldarch = elf32-i386
 CFLAGS += -m32
+CFLAGS += -I $(KERNELDIR)/include
+CFLAGS += -D__i386__
 
 flatfiles=
+
+all: kvmctl libkvm.a flatfiles
+kvmctl: LDFLAGS += -pthread -lrt
+kvmctl: kvmctl-x86.o main-x86.o
+	$(CC) -o $@ $(LDFLAGS) $^ $(LDLIBS)
+libkvm.a: kvmctl-x86.o
+	$(AR) rcs $@ $^
diff --git a/user/config-powerpc.mak b/user/config-powerpc.mak
new file mode 100644
--- /dev/null
+++ b/user/config-powerpc.mak
@@ -0,0 +1,32 @@
+LIBDIR = /lib
+cstart.o = test/cstart.o
+bits = 32
+ldarch = elf32-powerpc
+CFLAGS += -m32
+CFLAGS += -D__powerpc__
+
+# for some reaons binutils hates tlbsx unless we say we're 405
+CFLAGS := -mregnames -Wa,-m405
+
+TEST_DIR=test/powerpc
+
+all: kvmctl libkvm.a tests
+kvmctl: LDFLAGS += -pthread -lrt
+kvmctl: kvmctl-powerpc.o main-powerpc.o
+	$(CC) -o $@ $(LDFLAGS) $^ $(LDLIBS)
+libkvm.a: kvmctl-powerpc.o
+	$(AR) rcs $@ $^
+
+tests:  $(TEST_DIR)/spin.bin \
+	$(TEST_DIR)/sprg.bin \
+	$(TEST_DIR)/io.bin \
+	$(TEST_DIR)/tlbsx.bin \
+	$(TEST_DIR)/tlbwe.bin \
+	$(TEST_DIR)/tlbwe_16KB.bin \
+	$(TEST_DIR)/tlbwe_hole.bin
+
+%.elf: %.o
+	$(CC) -nostdlib $^ -o $@
+
+%.bin: %.elf
+	$(CROSS_COMPILE)objcopy -O binary $^ $@ 
diff --git a/user/config-x86_64.mak b/user/config-x86_64.mak
--- a/user/config-x86_64.mak
+++ b/user/config-x86_64.mak
@@ -3,5 +3,14 @@ bits = 64
 bits = 64
 ldarch = elf64-x86-64
 CFLAGS += -m64
+CFLAGS += -I $(KERNELDIR)/include
+CFLAGS += -D__x86_64__
 
 flatfiles = test/access.flat test/irq.flat test/sieve.flat test/simple.flat test/stringio.flat test/memtest1.flat
+
+all: kvmctl libkvm.a flatfiles
+kvmctl: LDFLAGS += -pthread -lrt
+kvmctl: kvmctl-x86.o main-x86.o
+	$(CC) -o $@ $(LDFLAGS) $^ $(LDLIBS)
+libkvm.a: kvmctl-x86.o
+	$(AR) rcs $@ $^
diff --git a/user/configure b/user/configure
--- a/user/configure
+++ b/user/configure
@@ -63,4 +63,5 @@ ARCH=$arch
 ARCH=$arch
 CC=$cross_prefix$cc
 LD=$cross_prefix$ld
+CROSS_COMPILE=$cross_prefix
 EOF



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/

                 reply	other threads:[~2007-10-18 20:10 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1192738255.12849.25.camel@thinkpad \
    --to=jyoung5-r/jw6+rmf7hqt0dzr+alfa@public.gmane.org \
    --cc=kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    --cc=kvm-ppc-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.