I'm trying to use cppunit 1.6.1 under the cygwin environment on NT. Has anyone tried this and been sucessful?
I installed cppunit according to the unix install instructions -- that part seems to work okay. However, I can't sucessfully use the make files to compile and link the examples. There is quite a long listing of errors. Also, the only way the examples are compiled is when I issue the command "make check".
Any insight would be much appreciated.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Can you send a more detailed report to me (smr99) and I'll try to help. I need to see the file named "config.log", and also the results of "make check". You can generate the latter using something like "make check >results 2>&1".
-Steve
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2001-10-23
Thanks to Steve Robbins, I was able to get this thing working under cygwin with win2k, so it will probably work with NT also. Try this:
$ make clean
$ ./configure --disable-shared
$ make install
$ make check
The "make install" gave me a couple errors at the end when it was trying to install docs but all the good stuff looks like it was installed correctly.
Good Luck
-Rob
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
To make the docs, I went to the Makefile in the doc directory, and added a backslash to the path to doxygen, right before the space in "Program Files":
/cygdrive/c/Program\ Files/doxygen-...
^
I'm sure this could be fixed in the configure, if one were so inclined.
--Mike
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm trying to use cppunit 1.6.1 under the cygwin environment on NT. Has anyone tried this and been sucessful?
I installed cppunit according to the unix install instructions -- that part seems to work okay. However, I can't sucessfully use the make files to compile and link the examples. There is quite a long listing of errors. Also, the only way the examples are compiled is when I issue the command "make check".
Any insight would be much appreciated.
Can you send a more detailed report to me (smr99) and I'll try to help. I need to see the file named "config.log", and also the results of "make check". You can generate the latter using something like "make check >results 2>&1".
-Steve
Thanks to Steve Robbins, I was able to get this thing working under cygwin with win2k, so it will probably work with NT also. Try this:
$ make clean
$ ./configure --disable-shared
$ make install
$ make check
The "make install" gave me a couple errors at the end when it was trying to install docs but all the good stuff looks like it was installed correctly.
Good Luck
-Rob
To make the docs, I went to the Makefile in the doc directory, and added a backslash to the path to doxygen, right before the space in "Program Files":
/cygdrive/c/Program\ Files/doxygen-...
^
I'm sure this could be fixed in the configure, if one were so inclined.
--Mike