[Qemu-devel] [RFC PATCH v3 01/11] configure: Support configuring c++ compiler

2013-05-21 Thread Tomoki Sekiyama
Add configuration for c++ compiler (${corss_prefix}g++ as default) in configure and Makefiles. Currently, usage of c++ language is only for access to Windows VSS using COM+ services in qemu-guest-agent for Windows. Signed-off-by: Tomoki Sekiyama tomoki.sekiy...@hds.com --- configure |6

Re: [Qemu-devel] [RFC PATCH v3 01/11] configure: Support configuring c++ compiler

2013-05-21 Thread Eric Blake
On 05/21/2013 09:33 AM, Tomoki Sekiyama wrote: Add configuration for c++ compiler (${corss_prefix}g++ as default) in s/corss/cross/ configure and Makefiles. Currently, usage of c++ language is only for access to Windows VSS using COM+ services in qemu-guest-agent for Windows. -- Eric

Re: [Qemu-devel] [RFC PATCH v3 01/11] configure: Support configuring c++ compiler

2013-05-21 Thread Peter Maydell
On 21 May 2013 16:33, Tomoki Sekiyama tomoki.sekiy...@hds.com wrote: Add configuration for c++ compiler (${corss_prefix}g++ as default) in configure and Makefiles. I think you should follow the same logic we use for picking the C compiler, so that we use 'c++' rather than 'g++' if cross_prefix

Re: [Qemu-devel] [RFC PATCH v3 01/11] configure: Support configuring c++ compiler

2013-05-21 Thread Tomoki Sekiyama
Hi Peter, On 5/21/13 12:56 , Peter Maydell peter.mayd...@linaro.org wrote: On 21 May 2013 16:33, Tomoki Sekiyama tomoki.sekiy...@hds.com wrote: Add configuration for c++ compiler (${corss_prefix}g++ as default) in configure and Makefiles. I think you should follow the same logic we use for

Re: [Qemu-devel] [RFC PATCH v3 01/11] configure: Support configuring c++ compiler

2013-05-21 Thread Tomoki Sekiyama
Hi Eric, Thank you for the review. On 5/21/13 12:42 , Eric Blake ebl...@redhat.com wrote: On 05/21/2013 09:33 AM, Tomoki Sekiyama wrote: Add configuration for c++ compiler (${corss_prefix}g++ as default) in s/corss/cross/ Oops, I'll fix this in next version... (with a fix for logic to