We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
When I 74compile my project I get these errors: **************************************** *** WARNING L1: UNRESOLVED EXTERNAL SYMBOL SYMBOL: ?C_STARTUP MODULE: gf.obj (GF) *** WARNING L1: UNRESOLVED EXTERNAL SYMBOL SYMBOL: ?C?COPY MODULE: gf.obj (GF) *** WARNING L2: REFERENCE MADE TO UNRESOLVED EXTERNAL SYMBOL: ?C?COPY MODULE: gf.obj (GF) ADDRESS: 0027H ******** WARNING L1: UNRESOLVED EXTERNAL SYMBOL SYMBOL: ?C_STARTUP MODULE: gf.obj (GF) *** WARNING L1: UNRESOLVED EXTERNAL SYMBOL SYMBOL: ?C?COPY MODULE: gf.obj (GF) *** WARNING L2: REFERENCE MADE TO UNRESOLVED EXTERNAL SYMBOL: ?C?COPY MODULE: gf.obj (GF) ADDRESS: 0027H ******************************************* What does this mean and where is the problem? Thanks
Please note that my c file is named " gf.c"
Are you translating all your 'C' source files with SRC? ie, are you translating from 'C' source to Assembler source, and then to object(s)?
It means that for some reasons the startup files and C runtime library weren't pulled into the link of your program. It's a little hard to guess why that would happen, mainly because you didn't supply any of the crucial information. A look at the very first couple of lines of the .map file (which I hope you're having generated), or any other way that gives you the actual linker command line used, would help.