Hi,
Anybody that could offer me any pointers I would greatly appreciate it.
There's a program i'm trying to run on my 6.0b3 machine that will take some logfiles, parse them and then spit them out to a format that a little php app can read and display nice graphs and pictures and stuff. I'm stuck on the first part, the log file parser. It's a C++ program that needs to be compiled. Now I followed the authors instructions... tried a simple "make". But it won't work without customising the Makefile for my system. The instructions given below are where my understanding ends. If it fails... Any help, greatly appreciated. I've included relavent background stuff below.
Instructions given by the program's author
--------
let's go into the cpp-directory: try typing "make" to compile the logfile-processor.
If it fails, change the Makefile to your specific compiler and your zlib-path.
--------
Error msg output
******************
g++-2 -c -Wall -O3 main.cpp -o main.o
make: g++-2: Command not found
make: *** [main.o] Error 127
******************
This i believe is the relevant part of the Makefile that needs to be modified.
----------
CXX = g++-2
CXXFLAGS = -Wall -O3
ZLIB = /usr/lib/libz.a
I have installed the following development stuff, all RH 7.3 Rpms (i'm assuming I've got that part right)
cpp-2.96-113.i386.rpm
glibc-kernheaders-2.4-7.16.i386.rpm
gcc-2.96-113.i386.rpm
libstdc++-2.96-113.i386.rpm
gcc-c++-2.96-113.i386.rpm
libstdc++-devel-2.96-113.i386.rpm
glibc-devel-2.2.5-40.i386.rpm
make-3.79.1-8.i386.rpm