dll vs pdb file

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Reza Alirezaei

    dll vs pdb file

    when I build an assembly project two files are being produced,dll file and
    pdb file,,what is the difference bwtween these two files?

    Thanks for your time


  • Vijaye Raji

    #2
    Re: dll vs pdb file

    Dlls are basically like lib files, but dynamically linked. They contain all
    your program code.

    Pdbs are Program Databases. They're like the dbg files, used for debugging.
    They're also called symbols - they aid the debugger, in determining the
    execution context, symbol names, call stack, etc.

    For normal execution, you only need the dll. You would need the Pdbs only
    if you're planning on debugging.

    -vJ

    "Reza Alirezaei" <anonymous@disc ussions.microso ft.com> wrote in message
    news:%23ToXXylS EHA.2408@tk2msf tngp13.phx.gbl. ..[color=blue]
    > when I build an assembly project two files are being produced,dll file and
    > pdb file,,what is the difference bwtween these two files?
    >
    > Thanks for your time
    >
    >[/color]


    Comment

    • Jackson Davis

      #3
      RE: dll vs pdb file

      The dll is the actual binary that executes. The PDB is the symbols that map memory locations in the binary to symbolic names for the debugger

      Jackson Davi
      -
      This posting is provided "As-Is" and confers no warrentee or rights.

      Comment

      Working...