diff options
author | Steve M. Robbins <smr@sumost.ca> | 2001-07-06 20:36:36 +0000 |
---|---|---|
committer | Steve M. Robbins <smr@sumost.ca> | 2001-07-06 20:36:36 +0000 |
commit | e3233e2ff1486e66bb85f81a4ac24f2a9a846a5c (patch) | |
tree | f7c586f8238d1a1c36f2e2e523a182fc2bb2f13e /README | |
parent | da53c2c10d2e531e8779f6f3849ac73938b6f902 (diff) |
Add configure option to disable RTTI for class name.
Diffstat (limited to 'README')
-rw-r--r-- | README | 23 |
1 files changed, 21 insertions, 2 deletions
@@ -1,4 +1,23 @@ + CppUnit --- The C++ Unit Test Library + ------------------------------------- + http://cppunit.sourceforge.net -The official CppUnit Homepage can be found at: - http://cppunit.sourceforge.net + + + INSTALLATION using configure script + ----------------------------------- + +See the file INSTALL for basic instructions. A short explanation for +each non-standard configure option follows. + + --disable-typeinfo-name + +Some output from the library will use a class name to distinguish +between tests. Normally, the Run-Time Type Information system is +used (specifically, the type_info::name() function) to generate +the name. Some compilers return human-readable names via this +interface. Other compilers do not. + +If your compiler does not generate a pleasing class name, specify +this option; the names will be generated by other means. |