* [Qemu-devel] qemu configure Makefile.target
@ 2005-03-13 9:49 Fabrice Bellard
0 siblings, 0 replies; 4+ messages in thread
From: Fabrice Bellard @ 2005-03-13 9:49 UTC (permalink / raw)
To: qemu-devel
CVSROOT: /cvsroot/qemu
Module name: qemu
Branch:
Changes by: Fabrice Bellard <bellard@savannah.gnu.org> 05/03/13 09:49:52
Modified files:
. : configure Makefile.target
Log message:
ARM host configure tweaks (Paul Brook)
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/configure.diff?tr1=1.59&tr2=1.60&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/Makefile.target.diff?tr1=1.60&tr2=1.61&r1=text&r2=text
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] qemu configure Makefile.target
@ 2008-01-06 18:27 Fabrice Bellard
0 siblings, 0 replies; 4+ messages in thread
From: Fabrice Bellard @ 2008-01-06 18:27 UTC (permalink / raw)
To: qemu-devel
CVSROOT: /sources/qemu
Module name: qemu
Changes by: Fabrice Bellard <bellard> 08/01/06 18:27:58
Modified files:
. : configure Makefile.target
Log message:
fixed ppc64abi32 executable name
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/configure?cvsroot=qemu&r1=1.177&r2=1.178
http://cvs.savannah.gnu.org/viewcvs/qemu/Makefile.target?cvsroot=qemu&r1=1.237&r2=1.238
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] qemu configure Makefile.target
@ 2006-06-14 18:17 Fabrice Bellard
0 siblings, 0 replies; 4+ messages in thread
From: Fabrice Bellard @ 2006-06-14 18:17 UTC (permalink / raw)
To: qemu-devel
CVSROOT: /sources/qemu
Module name: qemu
Changes by: Fabrice Bellard <bellard> 06/06/14 18:17:46
Modified files:
. : configure Makefile.target
Log message:
allow ACPI table build
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/configure?cvsroot=qemu&r1=1.105&r2=1.106
http://cvs.savannah.gnu.org/viewcvs/qemu/Makefile.target?cvsroot=qemu&r1=1.115&r2=1.116
Patches:
Index: configure
===================================================================
RCS file: /sources/qemu/qemu/configure,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -b -r1.105 -r1.106
--- configure 14 Jun 2006 15:21:14 -0000 1.105
+++ configure 14 Jun 2006 18:17:46 -0000 1.106
@@ -95,6 +95,7 @@
softmmu="yes"
user="no"
build_docs="no"
+build_acpi_tables="no"
uname_release=""
# OS specific
@@ -240,6 +241,8 @@
;;
--enable-uname-release=*) uname_release="$optarg"
;;
+ --enable-iasl) build_acpi_tables="yes"
+ ;;
esac
done
@@ -288,6 +291,7 @@
echo " --fmod-lib path to FMOD library"
echo " --fmod-inc path to FMOD includes"
echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
+echo " --enable-iasl compilation of ACPI tables with the IASL compiler"
echo ""
echo "NOTE: The object files are build at the place where configure is launched"
exit 1
@@ -708,6 +712,9 @@
if [ "$build_docs" = "yes" ] ; then
echo "BUILD_DOCS=yes" >> $config_mak
fi
+if [ "$build_acpi_tables" = "yes" ] ; then
+ echo "BUILD_ACPI_TABLES=yes" >> $config_mak
+fi
# XXX: suppress that
if [ "$bsd" = "yes" ] ; then
Index: Makefile.target
===================================================================
RCS file: /sources/qemu/qemu/Makefile.target,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -b -r1.115 -r1.116
--- Makefile.target 14 Jun 2006 17:32:25 -0000 1.115
+++ Makefile.target 14 Jun 2006 18:17:46 -0000 1.116
@@ -490,8 +490,10 @@
acpi.o: acpi.c acpi-dsdt.hex
-#$(SRC_PATH)/hw/acpi-dsdt.hex: acpi-dsdt.dsl
-# iasl -tc -p $@ $<
+ifdef BUILD_ACPI_TABLES
+$(SRC_PATH)/hw/acpi-dsdt.hex: acpi-dsdt.dsl
+ iasl -tc -p $@ $<
+endif
ifeq ($(TARGET_ARCH), sh4)
op.o: op.c op_mem.c cpu.h
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] qemu configure Makefile.target
@ 2003-11-16 23:18 Fabrice Bellard
0 siblings, 0 replies; 4+ messages in thread
From: Fabrice Bellard @ 2003-11-16 23:18 UTC (permalink / raw)
To: qemu-devel
CVSROOT: /cvsroot/qemu
Module name: qemu
Branch:
Changes by: Fabrice Bellard <fabrice.bellard@free.fr> 03/11/16 18:18:17
Modified files:
. : configure Makefile.target
Log message:
static config for SDL
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/configure.diff?tr1=1.21&tr2=1.22&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/Makefile.target.diff?tr1=1.10&tr2=1.11&r1=text&r2=text
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-01-06 18:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-13 9:49 [Qemu-devel] qemu configure Makefile.target Fabrice Bellard
-- strict thread matches above, loose matches on Subject: below --
2008-01-06 18:27 Fabrice Bellard
2006-06-14 18:17 Fabrice Bellard
2003-11-16 23:18 Fabrice Bellard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).