D
Size: a a a
VO
template<int n>
struct A {
static const int size = n;
};
template<int n>
struct B : public A<n> {
static int array[A<n>::size];
};
B<10> helper_10;
IP
Z
target_compile_options (LIB PUBLIC -m32 )
создаёт конфликт:library machine type 'x64' conflicts with target machine type 'x86'
NP
clang
, вот что в доке написано:-M, --dependencies
Like -MD, but also implies -E and writes to stdout by default
-E
автоматом не задействуется. Это баг или фича?M
target_compile_options (LIB PUBLIC -m32 )
создаёт конфликт:library machine type 'x64' conflicts with target machine type 'x86'
MM