Re: x32: mariadb: if defined __ILP32__ and __x86_64__ ?

2024-07-03 Thread Joel
Unsubscribe On Wed., Jul. 3, 2024, 00:21 Otto Kekäläinen, wrote: > Hi! > > MariaDB has this piece of code that is failing on x32 as reported in > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1063738 > > tests/mysql_client_fw.c > @@ -1442 > > #if defined __x86_64__ > compile_time_assert(si

Re: x32: mariadb: if defined __ILP32__ and __x86_64__ ?

2024-07-03 Thread наб
Hi! On Tue, Jul 02, 2024 at 09:05:14PM -0700, Otto Kekäläinen wrote: > tests/mysql_client_fw.c > @@ -1442 > > #if defined __x86_64__ > compile_time_assert(sizeof(MYSQL) == 1272); > #elif defined __i386__ > compile_time_assert(sizeof(MYSQL) == 964); > #endif > > How should I fix this for x32?

Re: x32: mariadb: if defined __ILP32__ and __x86_64__ ?

2024-07-03 Thread Bernd Petrovitsch
Hi all! On 03/07/2024 06:05, Otto Kekäläinen wrote: [...] MariaDB has this piece of code that is failing on x32 as reported in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1063738 tests/mysql_client_fw.c @@ -1442 #if defined __x86_64__ #if defined(__x86_64__) && !defined(__ILP32__)

Re: x32: mariadb: if defined __ILP32__ and __x86_64__ ?

2024-07-03 Thread Bernd Petrovitsch
Hi all! sent too fast: On 03/07/2024 12:31, Bernd Petrovitsch wrote: [...] On 03/07/2024 06:05, Otto Kekäläinen wrote: [...] MariaDB has this piece of code that is failing on x32 as reported in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1063738 tests/mysql_client_fw.c @@ -1442 #if def