From: Fabrice Bellard <fabrice@bellard.org>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] qemu configure Makefile.target
Date: Wed, 14 Jun 2006 18:17:46 +0000 [thread overview]
Message-ID: <E1FqZw2-0003cO-Ul@savannah.gnu.org> (raw)
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
next reply other threads:[~2006-06-14 18:17 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-14 18:17 Fabrice Bellard [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-01-06 18:27 [Qemu-devel] qemu configure Makefile.target Fabrice Bellard
2005-03-13 9:49 Fabrice Bellard
2003-11-16 23:18 Fabrice Bellard
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=E1FqZw2-0003cO-Ul@savannah.gnu.org \
--to=fabrice@bellard.org \
--cc=qemu-devel@nongnu.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 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).