Ask Your Question
0

What are V9, V0, V11 and mingw?

asked 2014-02-16 15:59:14 -0600

solarblast gravatar image

I was prowling around in my VS C++ 2013 install folder told, and found V9, V10, and V11 folders under a high level build folder. They, the Vs, contained bin, lib the staticlib. What are the three V folders for? Similarly why is mingw in another folder? That's a C++ compiler. A quick look with Google showed there may some agreement between MS and mingw.

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
2

answered 2014-02-16 17:21:51 -0600

The vc9, vc10, vc11 (and may be vc11_ui) folders are corresponding to different versions of OpenCV libraries which are built with Visual C++ 2008 (vc9), VC++ 2010 (vc10) and VC++ 2012 (vc11 and vc11_ui). And the mingw folder contains library's files built with g++ in mingw. These versions are for different developpers and systems because a program compiled in VC++ 2013 can not link to .lib files generated by VC++ 2012 (or 2010, .etc). I do not think there is an agreement between MS and mingw.

edit flag offensive delete link more

Comments

So I need not worry about them if I don't use the Vs?

solarblast gravatar imagesolarblast ( 2014-02-16 23:08:33 -0600 )edit

Yes, absolutely.

tuannhtn gravatar imagetuannhtn ( 2014-02-17 02:31:00 -0600 )edit

Question Tools

Stats

Asked: 2014-02-16 15:59:14 -0600

Seen: 2,071 times

Last updated: Feb 16 '14