Jason White <whitewaterssoftwareinfo@xxxxxxxxx> writes: > Hello I am curious as to weather GCC supports the MIPs 32 M4k > architecture (didn't see enough in the man page confirm or deny that > it could do it). Yes, gcc supports the M4k. See the -march and -mtune MIPS-specific options. > What command line options are required to invoke a > compilation for this architecture and does anyone know if there would > be an incompatibilities with the PIC32MX320F032H > (http://ww1.microchip.com/downloads/en/DeviceDoc/61143G.pdf) which is > based off of the MIPs 32 m4k architecture. The command line options would be -march=m4k and/or -mtune=m4k (depending on what you want to do). I have no idea about any incompatibilities. Ian