News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

DLL not produced

Started by Guardian, March 23, 2009, 06:42:55 PM

Previous topic - Next topic

Guardian

I've started using Code::Blocks coming from C++ Builder.  I have got a project to compile using the C++B compiler and a TDS file is produced but no DLL file.  I've searched for it in case it went somewhere unexpected.

In project build options\other options there was -Wall by default but this is not a recognised command.

I can't see any PCHs being made.  I'm using the 'object output dir' option with that.

ollydbg

Works Ok in my system(windows XP).
You can use wizard to create a simple DLL test project.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.