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
With a configuration like ./configure --enable-arg-max-hack --enable-lapack2flame
we currently get a lot of non-namespaced defines when including Flame.h in a source code
Specifically, the min define breaks compilation with GCC 10.2
/sw/csi/gcc/10.2.0/include/c++/10.2.0/bits/istream.tcc: In member function ‘std::streamsize std::basic_istream<_CharT, _Traits>::readsome(std::basic_istream<_CharT, _Traits>::char_type*, std::streamsize)’:
/home/zampins/amd/src/local/include/FLAME.h:830:21: error: expected unqualified-id before ‘(’ token
830 | #define min( x, y ) ( (x) < (y) ? (x) : (y) )
Here is a list of the most interesting ones. Is it possible to namespace them?
With a configuration like
./configure --enable-arg-max-hack --enable-lapack2flame
we currently get a lot of non-namespaced defines when including Flame.h in a source code
Specifically, the min define breaks compilation with GCC 10.2
Here is a list of the most interesting ones. Is it possible to namespace them?
The text was updated successfully, but these errors were encountered: