What is the process of compilation and linking in python?
Answer Posted / chaitanya
The compiling and linking allows the new extensions to be compiled properly without any error and the linking can be done only when it passes the compiled procedure. If the dynamic loading is used then it depends on the style that is being provided with the system. The python interpreter can be used to provide the dynamic loading of the configuration setup files and will rebuild the interpreter. The steps that is required in this as:
• Create a file with any name and in any lanugage that is supported by the compiler of your system. For example comp.c
• Place this file in the Modules/ directory of the distribution which is getting used.
• Add a line in the file Setup.local that is present in the Modules/ directory.
• Run the file using spam comp.o
• After successful run of this rebuild the interpreter by using the make command on the top-level directory.
• If the file is changed then run rebuildMakefile by using the command as ‘make Makefile’.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you write comments in python?
What is pip?
Does python supports hybrid inheritance?
Python list of lists, changes reflected across sublists unexpectedly
What are negative indexes?
What is a namespace in python?
What are membership operators in python? Write an example to explain both.
What does while 1 mean in python?
How will you get a 10 digit zero-padded number from an original number?
What is meant by“call by value” in python?
Tell me what is pep 8?
What is the difference between Xrange and range?
Who created python?
Tell me how are arguments passed by value or by reference?
Comparison operators != Is not equal to in python?