(Cpp) Linker, Libraries & Directories Information
Posted
by m00st
on Stack Overflow
See other posts from Stack Overflow
or by m00st
Published on 2010-05-15T16:45:33Z
Indexed on
2010/05/15
16:54 UTC
Read the original article
Hit count: 264
I've finished both my C++ 1/2 classes and we did not cover anything on Linking to libraries or adding additional libraries to C++ code.
I've been having a hay-day trying to figure this out; I've been unable to find basic information link
ing to objects. Initially I thought the problem was the IDE (Netbeans; and Code::Blocks). However I've been unable to get wxWidgets
and GTKMM
setup.
Can someone point me in the right direction on the terminology and basic information about #includ
ing files and link
ing files in a Cpp application? Basically I want/need to know everything in regards to this process. The difference between .dll
, .lib
, .o
, .lib.a
, .dll.a
. The difference between a .h
and a "library" (.dll, .lib correct?)
I understand I need to read the compiler documentation I am using; however all compilers (that I know of) use linker and headers; I need to learn this information.
Please point me in the right direction! :]
Thanks
© Stack Overflow or respective owner