Hi David, > On 12 Aug 2024, at 17:31, David Aldrich via Gcc-help <gcc-help@xxxxxxxxxxx> wrote: > > > > We are familiar with GNU gcc hosted by and targeting x86-64 (under > Ubuntu 22.04). We now want to target the NVidia Grace cpu, which I > understand is supported by GCC 15 ("-mcpu=grace"). > > To target NVIDIA Grace: > > Which GNU C++ toolchain should we run on x86-64 (for cross-compilation)? > > Which GNU C++ toolchain should we run on NVIDIA Grace (for native compilation)? I think the answer here depends on where you prefer to get your GCC binaries from. As far as the upstream GCC project goes (of which this is the mailing list) the most modern GCC release supporting -mcpu=grace is GCC 14.2 that was made a couple weeks ago: https://gcc.gnu.org/gcc-14/ I expect the various Linux distributions will be packaging it for their users soon. If you are comfortable building your own compilers from source you can take the GCC 14.2 sources and build the cross-compilers and native compilers yourself. Thanks, Kyrill