changefrom win to unix/linux env

hello, ive been programming in c,c++ in windows platform for quite a while, i wish to switch to unix platform, what kind of changes do i need to make to my projects.(all my projects are in MS VS 2005).How to build exe,DLL equivalents in unix/linux?(any links or explanations please.)
Thanks in advance:)
Last edited on
main source for linux documentation: http://tldp.org
other fine source: http://linux.die.net

Under linux executable binaries are created in the ELF format, and not PE like windows executables.
Good development environments are for example KDevelop, Code::Blocks, Geany, ...
Under linux dynamic linked libraries usually have the prefix lib and the extension .so and are located unter /usr/lib.
Danke Schun:):)
Topic archived. No new replies allowed.