Re: [PATCH xserver] meson: Make it possible to build for 32-bit targets

2017-09-24 Thread Eric Anholt
Jon Turney writes: > Setting glx_align64 to '' gives a null string in the arguments list passed > to the compiler. This is taken as an input filename, leading to: > > "cc: error: : No such file or directory" > > Instead, assign an empty list to glx_align64, which

Re: [PATCH xserver] meson: Make it possible to build for 32-bit targets

2017-09-23 Thread Alexander E. Patrakov
2017-09-22 17:54 GMT+05:00 Jon Turney : > Setting glx_align64 to '' gives a null string in the arguments list passed > to the compiler. This is taken as an input filename, leading to: > > "cc: error: : No such file or directory" > > Instead, assign an empty list to

[PATCH xserver] meson: Make it possible to build for 32-bit targets

2017-09-22 Thread Jon Turney
Setting glx_align64 to '' gives a null string in the arguments list passed to the compiler. This is taken as an input filename, leading to: "cc: error: : No such file or directory" Instead, assign an empty list to glx_align64, which gets flattened to nothing in the arguments list.