View the Most Wanted LQ Wiki articles.
LinuxQuestions.org > Linux Wiki > Programming-related Commands

From LQWiki

Jump to: navigation, search

Some programming-related commands:

  • compiling
    • gcc -- "GNU Compiler Collection". Also C compiler.
    • g++ -- C++ front-end to GCC.
    • gcj -- Java front-end to GCC.
  • dealing with object files (see also binutils)
    • nm - lists symbols from object files
    • objcopy - copies and translates object files
    • objdump - display information from object files
    • readelf - displays information about ELF files
  • lexical analyzer and parser
    • bison (the yacc replacement)
    • flex (the lex replacement)
  • misc
    • addr2line - converts addresses into file names and line numbers
    • as - the portable GNU assembler
    • c++filt - demangles C++ and Java symbols
    • file
    • gprof - displays call graph profile data
    • ksymoops - a utility to decode Linux kernel oops
    • ranlib - generates index to archive
    • size - lists section sizes and total size
    • strings - finds printable strings in a file
    • strip - discards symbols from object files

Personal tools