https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96661
--- Comment #1 from Tobias Burnus <burnus at gcc dot gnu.org> --- (In reply to John David Anglin from comment #0) > Guess this is because target doesn't support int128. For "omp depend", the OpenMP spec requires that an integer type is used – and the libgomp implementation uses two pointer [= 2*sizeof(void*)] for this. If (as I assume) hppa64-hp-hpux11.11 uses 64bit pointers, this indeed means that in128 is needed. In principle, OpenMP should have used some opaque data type (user-defined derived type). But as they didn't think of this when specifying the data type and the best choice for the implementation in GCC was to have storage for two pointers, I now have this problem. I do not see an easy way out; we had the same issue before with GCN and there the solution was to add support for int128, cf. PR 96306. > For the most part, libgomp used to work on this target. Probably still the case when ignoring the 'depend' feature in Fortran...