Code Comments
Programming Forum and web based access to our favorite programming groups.hi,all when I compile a code with CVF6, it gives warning: warning LNK4084: total image size 355000320 exceeds max (268435456); image may not run what is 'image' means? and why it is limited under 256M? does it arise from CVF or computer haradware or somthing else ? thanks Zhang
Post Follow-up to this messageZyf wrote: | hi,all | | when I compile a code with CVF6, it gives warning: | | warning LNK4084: total image size 355000320 exceeds max (268435456); | image may not run | | what is 'image' means? and why it is limited under 256M? does it arise | from CVF or computer haradware or somthing else ? Basically, it's harmless, but see these Intel Forum threads: http://softwareforums.intel.com/ids..._id=5&q=LNK4084 -- Jugoslav ___________ www.geocities.com/jdujic Please reply to the newsgroup. You can find my real e-mail on my home page above.
Post Follow-up to this messageJugoslav Thanks, I have read those posts. I have got the answer. Jugoslav Dujic wrote: > Zyf wrote: > | hi,all > | > | when I compile a code with CVF6, it gives warning: > | > | warning LNK4084: total image size 355000320 exceeds max (268435456); > | image may not run > | > | what is 'image' means? and why it is limited under 256M? does it arise > | from CVF or computer haradware or somthing else ? > > Basically, it's harmless, but see these Intel Forum threads: > > http://softwareforums.intel.com/ids..._id=5&q=LNK4084 >
Post Follow-up to this messageZyf wrote: > when I compile a code with CVF6, it gives warning: > warning LNK4084: total image size 355000320 exceeds > max (268435456); image may not run > what is 'image' means? and why it is limited under 256M? does it arise > from CVF or computer haradware or somthing else ? Image is the compiled program. A strange name, but that is what it is. -- glen
Post Follow-up to this message> Image is the compiled program. A strange name, but that is what it is. Strange - why? It is an image of the memory at the time the program was linked. See, for instance, the VMS documentation (available on the web) where this is standard usage and has been so for more than 25 years... Jan
Post Follow-up to this messageJan Vorbrüggen wrote: > Strange - why? It is an image of the memory at the time the program was > linked. See, for instance, the VMS documentation (available on the web) > where this is standard usage and has been so for more than 25 years... Well, one some systems it is. Under TOPS-10 such files could be made by loading the program into memory, and then doing a SAVE command. It really is an image of memory. On other systems such files have much more structure than a memory image, possibly containing relocation information and external symbol information interleaved with program text. Maybe less obvious is the use of the word "text" to describe executable code. This seems to be common on some IBM systems, CMS object files have the TEXT file type, and object libraries are TXTLIB. If you are not a native english speaker, though, you might find it a little strange. -- glen
Post Follow-up to this message> On other systems such files have much more structure than > a memory image, possibly containing relocation information > and external symbol information interleaved with program text. Containing, yes - a VMS image file certainly does. Interleaved? Never seen that, and seems an unnecessary complication. Jan
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.