When we compile a C source file using the GNU C compiler (GCC), the compiler first translates the code into an assembly source file. This assembly source is then processed by the assembler, which is included with GCC. The assembler generates object code, which is in a relocatable machine code format and is usually not directly executable. Next, the linker steps in to link the necessary libraries. Libraries are also in a relocatable format, which is why we compile them with the -shared, -fpic, or -fPIC flags. During the linking process, the linker checks the library names included in the source file and verifies whether these libraries are available in the system’s default library path, typically /usr/lib on GNU/Linux systems. If the required libraries are not in the default path, you can specify their location by passing them as an argument to GCC using the -I flag, like so: gcc -I/home/shuja/Documents/libmy.so C Source File Assembly Source (generated by GNU C compiler...
Tar used to create archive files in Unix/Unix like systems to make tape backups. Create tar archive tar -cvf my_archive.tar myDirectory c = Create v = Verbose f = File List files in an archive tar -tvf my_archive.tar t = list v = verbose f = file Create tar archive with gzip compression tar -cvzf my_archive.tar.gz myDirectory c = Create v = Verbose z = Gzip Compression f = File Un tar / unzip tar -xvf my_archive.tar
During World War I, Kingswood enlisted a group of present boys as cadet officers to fight on behalf of the Crown, the son of a family that was close to Kingswood — Brian Leslie De Vos — Kingswood For Ever The Story of Kingswood Kandy - Chapter Kingswood and The World War - Page 98 "The thirteenth and last for mention is Brian Leslie de Vos who was wounded in action on the 28th March 1918 and died on the following day of his wounds. No one loved Kingswood more devotedly than he. He was entirely our own; he exulted in being ours and entirely ours. Every letter of his from the Front, to whomever written, had some endearing reference to the school. He was wounded once in France, and wrote afterwards : "I now have in my possession a copy of the Kingswood Song, stained with blood. It was on my person when I was wounded. It is the souvenir I value most. Can you get me the music of the Kingswood Song? Oh! for a Kingswood day again!" He left Kandy on the 18th October 1915....
Comments
Post a Comment