DevOps Static & Shared Libraries

12345678910111213
Across
  1. 1. The option "d" to the ar command does this to a module (object code stored in an archive)
  2. 4. The file extension used in Linux (and BSD) for a static library is the ____ letter of the alphabet
  3. 7. Option to the environment variable LD_DEBUG that displays library search paths
  4. 8. A library where 1) The executable contains the contents the library 2) We cannot update the library separately from the application
  5. 9. A program to create and manage static libraries
  6. 10. The environment variable (with the underscore removed) to debug libraries
  7. 11. Option to the environment variable LD_DEBUG that displays a help message
  8. 13. Option for g++ to produce a shared library is -_______
Down
  1. 1. The option "t" to the ar command does this to the contents of the archive
  2. 2. The environment variable (with the underscores removed) to add to the search path for a library
  3. 3. Bash command to create a new environment variable in the shell
  4. 4. An option to g++ (without the hyphen) in building object files that allows users to build a shared library
  5. 5. A library where 1) The executable does not contain the contents of the library 2) Many different programs can use it at run time 3) We can update the library separately from the application
  6. 6. The option "x" to the ar command does this to a module (object code stored in an archive)
  7. 12. Bash command to remove an environment variable in the shell
  8. 13. The file extension used in Linux for shared libraries