Page 1 of 1

gcc 3.4.2 are reactos sources ready.

Posted: Sun Jan 23, 2005 5:38 am
by oiaohm
Mingw moving into pre version before next version with gcc 3.4.2 last time tried building this with gcc 3.4.2 it did not build. Problem most is with the C++ stuff gcc 3.4 is strict on C++ standards and types wrong type will not build. Note you are not alown with gcc 3.4 nuking code and forcing updates.

A good one from another source is.

class xxx {
friend class yyy {
};
};
Yep this does not work any more it has to be.
class xxx {
class yyy {
};
friend class yyy;
};
Things are alot more strict.