News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

RSRC file

Started by shankle, June 27, 2015, 06:33:27 AM

Previous topic - Next topic

shankle

Same program - trying to finalize as a production program.
Link is having a hissy:
   'menu64.obj' is not recognized as an internal or external command,
operable program or batch file.
I originally made a copy for testing called B from program A.
I had no problems compiling program B when testing.
I now have to rename program B to program A.
When I did this the linker gave the above error.
I used the same RSRC script file - no changes were made to it.
I think I am on the latest Golink - V. 1.0.2.0
Thanks for any guidance. 

wjr

Check your GoRC command line. If you have the /r option, the output file from the assumed input file menu64.rc would be menu64.res instead, so you could try menu64.res on the GoLink command line. Switching the GoRC command line option to /o should output menu64.obj (you get both OBJ and RES without these options).

shankle

Thank you WJR for responding.
Problem is now solved.