Skip to content

Commit c554cc4

Browse files
Update README.md
Added more description about .so file.
1 parent 01d6708 commit c554cc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Shared Object (.so) File:-
66

77
In simple words, a '.so' file on Linux is similar to a 'dll' on Windows.
88

9-
It is a library that is dynamically linked to the executable/binary, meaning it's not embedded inside the executable/binary like a static library (.a). Instead, the executable/binary contains references to the .so file, which is loaded into memory when the executable/binary is run and the library's functionality is referenced. This dynamic linking allows multiple executables/binaries to share the same library in memory, promoting efficient use of system resources.
9+
It is a shared library that is dynamically linked to the executable/binary, meaning it's not embedded inside the executable/binary like a static library (.a). Instead, the executable/binary contains references to the .so file, which is loaded into memory when the executable/binary is run and the library's functionality is referenced. This dynamic linking allows multiple executables/binaries to share the same library in memory, promoting efficient use of system resources.
1010

1111
------------------
1212
For System Requirements please refer 'Application_Requirements.txt'

0 commit comments

Comments
 (0)