Fix MinGW breakage in setjmp.S
Brought to you by:
noxorc
I also found an issue when compiling setjmp.S using MinGW for both x86_32 and x86_64, due to the use of ELF specific assembler extensions (.type setjmp, @function is not comptaible with PE-COFF).
This patch addresses that, by making sure that we use the equivalent .type definition for MinGW. Note that I only addressed x86_32 and x86_64 as I'm not aware of MinGW developments for any other archs.
Regards,
/Pete
Accepted and pushed to git tree.
commit dd5c3db93b066f58637a3acd0df20c537cf3bcae
Thank you Pete.