| From f346ff306b647fe1db3ffe8c9880178382c7b98d Mon Sep 17 00:00:00 2001 |
| From: Amos Kong <akong@redhat.com> |
| Date: Fri, 8 Nov 2013 06:13:58 +0100 |
| Subject: [PATCH 3/4] qapi: enable generation of native list code |
| |
| RH-Author: Amos Kong <akong@redhat.com> |
| Message-id: <1383891239-29531-4-git-send-email-akong@redhat.com> |
| Patchwork-id: 55610 |
| O-Subject: [RHEL-7.0 qemu-kvm PATCH v2 3/4] qapi: enable generation of native list code |
| Bugzilla: 848203 |
| RH-Acked-by: Vlad Yasevich <vyasevic@redhat.com> |
| RH-Acked-by: Laszlo Ersek <lersek@redhat.com> |
| RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com> |
| |
| From: Michael Roth <mdroth@linux.vnet.ibm.com> |
| |
| Also, fix a dependency issue with libqemuutil: qemu-sockets.c needs |
| qapi-types.c/qapi-visit.c |
| |
| Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com> |
| Reviewed-by: Laszlo Ersek <lersek@redhat.com> |
| Reviewed-by: Amos Kong <akong@redhat.com> |
| Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> |
| (cherry picked from commit 0b400e792718f59275d5d54c21de9a589b35a81f) |
| |
| Makefile | 10 +++++----- |
| 1 files changed, 5 insertions(+), 5 deletions(-) |
| |
| Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com> |
| |
| Makefile | 10 +++++----- |
| 1 files changed, 5 insertions(+), 5 deletions(-) |
| |
| diff --git a/Makefile b/Makefile |
| index 45048a3..66774de 100644 |
| |
| |
| @@ -183,7 +183,7 @@ Makefile: $(version-obj-y) $(version-lobj-y) |
| # Build libraries |
| |
| libqemustub.a: $(stub-obj-y) |
| -libqemuutil.a: $(util-obj-y) |
| +libqemuutil.a: $(util-obj-y) qapi-types.o qapi-visit.o |
| |
| ###################################################################### |
| |
| @@ -239,20 +239,20 @@ $(SRC_PATH)/qapi-schema-rhel.json: $(SRC_PATH)/qapi-schema.json |
| ifeq ($(CONFIG_LIVE_BLOCK_OPS),y) |
| qapi-types.c qapi-types.h :\ |
| $(SRC_PATH)/qapi-schema-rhev.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) |
| - $(call quiet-command,python $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, " GEN $@") |
| + $(call quiet-command,python $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." -b < $<, " GEN $@") |
| qapi-visit.c qapi-visit.h :\ |
| $(SRC_PATH)/qapi-schema-rhev.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py) |
| - $(call quiet-command,python $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." < $<, " GEN $@") |
| + $(call quiet-command,python $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." -b < $<, " GEN $@") |
| qmp-commands.h qmp-marshal.c :\ |
| $(SRC_PATH)/qapi-schema-rhev.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) |
| $(call quiet-command,python $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " GEN $@") |
| else |
| qapi-types.c qapi-types.h :\ |
| $(SRC_PATH)/qapi-schema-rhel.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) |
| - $(call quiet-command,python $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, " GEN $@") |
| + $(call quiet-command,python $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." -b < $<, " GEN $@") |
| qapi-visit.c qapi-visit.h :\ |
| $(SRC_PATH)/qapi-schema-rhel.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py) |
| - $(call quiet-command,python $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." < $<, " GEN $@") |
| + $(call quiet-command,python $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." -b < $<, " GEN $@") |
| qmp-commands.h qmp-marshal.c :\ |
| $(SRC_PATH)/qapi-schema-rhel.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) |
| $(call quiet-command,python $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " GEN $@") |
| -- |
| 1.7.1 |
| |