Re: [PATCH v3] Xen: Update compiler checks

2025-03-28 Thread Andrew Cooper
On 28/03/2025 2:05 pm, Anthony PERARD wrote: > On Thu, Mar 27, 2025 at 05:43:02PM +, Andrew Cooper wrote: >> The $(eval $(check-y)) is badly positioned: >> >> xen.git/xen$ make >> *** FATAL BUILD ERROR: Xen requires at least GCC 0x150100 >> *** FATAL BUILD ERROR: Xen requires at least GCC

Re: [PATCH v3] Xen: Update compiler checks

2025-03-28 Thread Anthony PERARD
On Thu, Mar 27, 2025 at 05:43:02PM +, Andrew Cooper wrote: > The $(eval $(check-y)) is badly positioned: > > xen.git/xen$ make > *** FATAL BUILD ERROR: Xen requires at least GCC 0x150100 > *** FATAL BUILD ERROR: Xen requires at least GCC 0x150100 > *** FATAL BUILD ERROR: Xen requires a

Re: [PATCH v3] Xen: Update compiler checks

2025-03-28 Thread Jan Beulich
On 27.03.2025 18:43, Andrew Cooper wrote: > We have checks in both xen/compiler.h, and Config.mk. Both are incomplete. > > The check in Config.mk sees $(CC) in system and cross-compiler form, so cannot > express anything more than the global baseline. Change it to simply 5.1. > > In xen/compile

[PATCH v3] Xen: Update compiler checks

2025-03-27 Thread Andrew Cooper
We have checks in both xen/compiler.h, and Config.mk. Both are incomplete. The check in Config.mk sees $(CC) in system and cross-compiler form, so cannot express anything more than the global baseline. Change it to simply 5.1. In xen/compiler.h, rewrite the expression for clarity/brevity. Incl