Author Topic: DLL not produced  (Read 2293 times)

Guardian

  • Guest
DLL not produced
« on: March 23, 2009, 06:42:55 pm »
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.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5916
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: DLL not produced
« Reply #1 on: March 24, 2009, 01:40:07 am »
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.