Hi,
I want to have a some global object constructor executed only on a specific core on the multi-core C6678.
It is possible to instruct the compiler to put a global object constructor call onto a specific table instead of the single table placed in the ".init_array"?
I know how to place object in a specific section and say to the linker to generate a separate initialization table (and my boot code have to explicit call copy_tbl() on the separate table) but this work only with the zero initialized object and with initialized POD data: if the global object have a constructor, the call to it is placed in the single constructor list and I don't know how to discriminate.
I don't use MAD.
CGT: 7.3