You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cross-compiling with mingw used to work, but fails with a newer mingw
x86_64-w64-mingw32-gcc (SUSE Linux) 9.2.0
The failure messages report this:
/path/msmpi/include/mpi.h:514:1: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'MPI_Send'
MPI_Send(
^~~~~~~~
This traces back to many, many attribute expansions that appear to be specific to the microsoft compiler. Older versions of Gcc silently ignored these attributes, but they are now flagged as errors.
What is the best fix for this?
The text was updated successfully, but these errors were encountered:
Cross-compiling with mingw used to work, but fails with a newer mingw
The failure messages report this:
This traces back to many, many attribute expansions that appear to be specific to the microsoft compiler. Older versions of Gcc silently ignored these attributes, but they are now flagged as errors.
What is the best fix for this?
The text was updated successfully, but these errors were encountered: