Re: [PATCH] tools: hv: Fix cross-compilation

2024-12-17 Thread Wei Liu
On Thu, Dec 12, 2024 at 08:01:02PM -0800, Saurabh Singh Sengar wrote: > On Thu, Dec 12, 2024 at 11:06:16PM +, Wei Liu wrote: > > On Thu, Dec 12, 2024 at 12:28:34AM -0800, Saurabh Sengar wrote: > > > Use the native ARCH only incase it is not set, this will allow > > > the cross complilation wher

Re: [PATCH] tools: hv: Fix cross-compilation

2024-12-14 Thread Adrian Vladu
Sengar ; k...@microsoft.com ; haiya...@microsoft.com ; wei@kernel.org ; de...@microsoft.com ; linux-hyperv@vger.kernel.org ; linux-ker...@vger.kernel.org Cc: ssen...@microsoft.com ; Adrian Vladu Subject: Re: [PATCH] tools: hv: Fix cross-compilation   Thanks, LGTM! Reviewed-by: Roman Kisel

Re: [PATCH] tools: hv: Fix cross-compilation

2024-12-13 Thread Roman Kisel
Thanks, LGTM! Reviewed-by: Roman Kisel On 12/12/2024 12:28 AM, Saurabh Sengar wrote: Use the native ARCH only incase it is not set, this will allow the cross complilation where ARCH is explicitly set. Add few info prints as well to know what arch and toolchain is getting used to build it. Add

Re: [PATCH] tools: hv: Fix cross-compilation

2024-12-12 Thread Saurabh Singh Sengar
On Thu, Dec 12, 2024 at 11:06:16PM +, Wei Liu wrote: > On Thu, Dec 12, 2024 at 12:28:34AM -0800, Saurabh Sengar wrote: > > Use the native ARCH only incase it is not set, this will allow > > the cross complilation where ARCH is explicitly set. Add few > > info prints as well to know what arch an

Re: [PATCH] tools: hv: Fix cross-compilation

2024-12-12 Thread Wei Liu
On Thu, Dec 12, 2024 at 12:28:34AM -0800, Saurabh Sengar wrote: > Use the native ARCH only incase it is not set, this will allow > the cross complilation where ARCH is explicitly set. Add few > info prints as well to know what arch and toolchain is getting > used to build it. > > Additionally, sim

[PATCH] tools: hv: Fix cross-compilation

2024-12-12 Thread Saurabh Sengar
Use the native ARCH only incase it is not set, this will allow the cross complilation where ARCH is explicitly set. Add few info prints as well to know what arch and toolchain is getting used to build it. Additionally, simplify the check for ARCH so that fcopy daemon is build only for x86_64. Fix