Hi, > > Based on this link (sorry folks outside the SWAN): > > > > http://ostest.central.sun.com/wiki/index.php/Package_Delivery_Project#3._Develop_Software > > > > It seems that the use of GCC is allowed. If this is not the case, then > > perhaps we need to update the above. > > gcc is c compiler, g++ is C++ compiler. >
To be exact, GCC is the GNU Compiler Collection (which includes C compiler (aka gcc), C++ Compiler, Objective-C compiler, Fortran compiler, Ada compiler, Java compiler and few relevant libraries). So, not all components of GCC are allowed, but gcc is allowed (not preferred, it's suboptimal). g++ isn't allowed, because of evolving mess (and leading to library mess). Best regards, Milan
