5

After building the boost library (so I could use the filesystem namespace) I found in the stage/lib folder the following files with filesystem in the name:

libboost_filesystem-vc100-mt-1_51 (838 kb)

libboost_filesystem-vc100-gd-mt-1_51 (4210 kb)

Notice the -gd in the second one. I also put in the size in parenthesis. So, what's the difference? Which one do I use?

sinθ
  • 11,093
  • 25
  • 85
  • 121

1 Answers1

9

-gd is for debug version of libs. Use -gd-mt for building in debug configuration and -mt for release configurations.

Mikhail
  • 20,685
  • 7
  • 70
  • 146