On Wed, 2 Feb 2005, Gregory Hicks wrote:

We have discussed the Win32 now, would you have any idea on where to
look for the HTdig to be installed on my Solaris box?  I have the gcc
compiler from SunFreeware.com that installs to /usr/local installed,
but I also see the message "You might consider installing libstdc++..."

gcc and libstdc++ are both reachable from $PATH and $LD_LIBRARY_PATH...

Any thoughts?

Have you verified that a C++ compiler and library is really installed and functional? Have you successfully compiled any other C++ code? If not, you might want to try compiling a small test program. If you are not familiar with C++, the following test might be helpful.

Create a file named cpptest.cpp with the following code.

#include <iostream>

int main(int, char* []) {
     std::cout << "Success" << std::endl;

     return 0;
}

Save the file and then execute the following command.

g++ -Wall cpptest.cpp -o cpptest

If you make it that far, execute the following.

./cpptest

You should see the word 'Success' output by the program.

If you can't make it this far, then something is missing or fundamentally
broken with respect to your environment or compiler install.


Jim


------------------------------------------------------- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl _______________________________________________ ht://Dig Developer mailing list: htdig-dev@lists.sourceforge.net List information (subscribe/unsubscribe, etc.) https://lists.sourceforge.net/lists/listinfo/htdig-dev

Reply via email to