On Fri, 5 Sept 2025, 22:32 Shiva Subramanian via Gcc-help, < gcc-help@xxxxxxxxxxx> wrote: > Hi team, > > I'm planning to work on porting GCC over to HPE Nonstop and would > appreciate any guidance on the topic. I looked around in the wiki for any > information on porting GCC to newer platforms but didn't find any. Would > appreciate any advice. > If Nonstop provides a POSIX-like API then porting GCC itself should be relatively simple, because it already supports Intel processors. But you will need an assembler and linker that produce binaries in the expected format for the OS. GCC does not include the assembler and linker, it expects them to be present on the OS. So you might need to port Binutils first. >