Issue
Install g++ 3.3
on Debian 8
=>
not available.
Compile with g++ 4.9
and -m32 and -g++-3.3.2 or -std=c++98 or -std=c++03
options but it doesn't work.
There are header files missing.
Do I have to install old Debian version and old g++/gcc
to compile this old code ?
I installed Ubuntu 5.10 and g++ 4. Now no header missing but problems with c++ code. C++ dialect problem ?
http://davalo.de/7847test/Source/errors_messages3.txt
m_pArray and m_MaxListSize no declaration in the scope error:
template<class T, int size>
class ObjArray : public BaseObjArray<T> {
public:
ObjArray() {
m_pArray = m_Array;
m_MaxListSize = size;
}
private:
T m_Array[size];
};
Solution
Ubuntu 5.10 with g++ downgrade to 3.3 dit it. No error.No warnings. And all in virtual machine Vmware on win7 host, because I don't have IDE cdrom or floppy.
Answered By - hugo289