https://bugzilla.suse.com/show_bug.cgi?id=1207989 https://bugzilla.suse.com/show_bug.cgi?id=1207989#c10 --- Comment #10 from Richard Biener <rguenther@suse.com> --- I wonder why the lapacke reference is mangled to LAPACK_cggsvp ... OK, I think that LAPACKE/include/lapack.h simply misses declarations of the deprecated functions and the call in LAPACKE/src/lapacke_cggsvp_work.c is likely not prototyped: /* Call LAPACK function and adjust info */ LAPACK_cggsvp( &jobu, &jobv, &jobq, &m, &p, &n, a, &lda, b, &ldb, &tola, &tolb, k, l, u, &ldu, v, &ldv, q, &ldq, iwork, rwork, tau, work, &info ); I suppose that's a bug upstream, eventually the deprecated functions got removed from lapack.h and there's failure to conditionally provide it under some #ifdef or in an internal header for the purpose of building the deprecated functions into the library. I wonder how other distros resolved the API deprecation, like whether they bumped the SONAME and removed the interfaces. -- You are receiving this mail because: You are on the CC list for the bug.