answersLogoWhite

0


Best Answer

References are resolved by their offset within the data segment.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What resolves references from object code files and libraries file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the role of linker in program execution?

a linker is a computer program which takes one or more object files generated by compiler and link them link them to standard library and produce one executable object file. The libraries includes operating system libraries, language specific libraries and ,may be, user created libraries.


What are binary files and libraries in Linux?

Binary files are compiled programs. Libraries are external resources that one or more programs can call upon to aid them in a task.


Does linkes combines library files with SOURCE FILE?

No. Linkers combine object files and library files, which are collections of object files. All source files need to be compiled to object files.


How do you compile library?

f you have a bunch of files that contain just functions, you can turn these source files into libraries that can be used statically or dynamically by programs. This is good for program modularity, and code re-use. Write Once, Use Many.A library is basically just an archive of object files


What is mean by authority file of library?

authority files in libraries


What is the concept of where folders that gather files from different locations and display the files as if they were all saved in the same folder?

libraries


What happens to the files in a library if you delete the library from your list of libraries?

They get deleted with the library


Which windows versions use libraries to logically group files?

Windows 7


Does Linux has .dll files?

No, Linux has .so (Shared object) and .ko (Driver) files. Shared objects work in much the same way as dynamically linked libraries, except in a much better way that doesn't screw things up. There is no real Linux "DLL hell" equivalent.


What is the concept Windows 7 introduces the concept of folders that gather files from different locations and display the files as if they were all saved in a single folder?

libraries


What is the role of header files in c?

Header files allow the user to make use of predefined libraries in order to save time and reuse code.


What is the output of the compiler in C?

The output of both C and C++ compilers is one or more object files. The object files must then be processed by a linker in order to produce a machine code executable. Note that object files have nothing whatsoever to do with object-oriented programming. Object files contain relocatable machine code plus metadata relating to the code in order to assist with linking. The linker typically processes and combines relevant machine-code portions of the object files to produce the final executable.