Closed sagitter closed 6 months ago
fixed.
fixed.
Thank you.
About these ones:
sreadmt.c:62:42: error: passing argument 5 of ‘sallocateA’ from incompatible pointer type [-Wincompatible-pointer-types]
62 | sallocateA(*n, *nonz, nzval, rowind, colptr); /* Allocate storage */
| ^~~~~~
| |
| int **
I still need to add (as reported in GCC-14 porting notes)
#if defined __GNUC__ && __GNUC__ >= 14
#pragma GCC diagnostic warning "-Wimplicit-function-declaration"
#pragma GCC diagnostic warning "-Wincompatible-pointer-types"
#pragma GCC diagnostic warning "-Wint-conversion"
#pragma GCC diagnostic warning "-Wreturn-mismatch"
#endif
to get back incompatible-pointer-types
errors like warnings.
In the fixed code sreadmt.c, colptr is declared as int_t , instead of int , so the following error should not occur:
sreadmt.c:62:42: error: passing argument 5 of ‘sallocateA’ from incompatible pointer type [-Wincompatible-pointer-types] 62 | sallocateA(n, nonz, nzval, rowind, colptr); / Allocate storage / | ^ |
---|---|---|
int ** |
Hi all.
superlu_mt-4.0.1
is failing withGCC-14
with following errors: