I think I am doing this correctly.
I am currently doing some testing with Tiny C.
http://bellard.org/tcc/According to it's doc it will link res files created with windres using:
windres -O coff app.rc -o appres.obj
tcc app.c appres.obj -o app.exe
This does in fact work quite well but means you need the whole MinGW package.
I tried using GoRc.
According to the GoRc help file the object type of the /o /fo output is coff.
GoRc /fo appres.obj app.rc
I get an unrecognized file type from tcc
James